Merge pull request #434 from smeax/master

Delete scripts/typing-speed-checker directory
This commit is contained in:
Advaita Saha 2022-10-15 10:23:58 +05:30 committed by GitHub
commit bc582c574f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 35 deletions

View File

@ -1,3 +0,0 @@
# Typing Speed Checker
You can check someone's typing speed with this simple Python script. It uses python's inbuild time module to test the user's typing speed.

View File

@ -1,32 +0,0 @@
from time import time
print("PARAGRAPH:")
print()
typingString = "Medical transcription, also known as MT, is an allied health profession dealing with the process of transcribing voice-recorded medical reports that are dictated by physicians, nurses and other healthcare practitioners. Medical reports can be voice files, notes taken during a lecture, or other spoken material."
words = len(typingString.split())
print(typingString)
print("\nAfter finishing the test, press the enter key to see your time and speed (in WPM)")
input("\nPress any key to Start:")
try:
print("\nTimer Started\n")
start = time()
t = input()
end = time()
if t == typingString:
total = round(end - start, 2)
print("\nCongrats! You typed everything correctly.")
print("You took was %s seconds" % total)
total = int(total) / 60
print("Your speed was %s wpm" % (str(words // total)))
else:
print("\nWrongly entered")
print("Try again")
except KeyboardInterrupt:
print("")