Skip to content

Instantly share code, notes, and snippets.

@yazilimfuryasi
Created September 14, 2020 20:33
Show Gist options
  • Save yazilimfuryasi/f4c534a07b48a3a1b64e41c8b41ffddc to your computer and use it in GitHub Desktop.
Save yazilimfuryasi/f4c534a07b48a3a1b64e41c8b41ffddc to your computer and use it in GitHub Desktop.
Yazı yazma hızı hesapla
import datetime
input("Hazır olduğunuzda ENTER 'e basınız. ")
print("ENTER 'e basınca sonuç gösterilir")
print("Süre başladı")
basla = datetime.datetime.now()
yazi = input("Yazınız: ")
bitir = datetime.datetime.now()
hiz = basla - bitir
sure = abs(round(hiz.total_seconds(),2))
ortalama = round(len(yazi) / sure,1)
print(f"{sure} saniyede yazdın.")
print(f"Saniyedeki ortalama {ortalama}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment