Skip to content

Instantly share code, notes, and snippets.

@eneshazr
Created June 19, 2021 20:46
Show Gist options
  • Save eneshazr/167148b752c37e5f214861ea3e36d3b6 to your computer and use it in GitHub Desktop.
Save eneshazr/167148b752c37e5f214861ea3e36d3b6 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