Skip to content

Instantly share code, notes, and snippets.

@yazilimfuryasi
Created September 14, 2020 21:33
Show Gist options
  • Save yazilimfuryasi/6f6c04fe0a357b4665154380bacb74f1 to your computer and use it in GitHub Desktop.
Save yazilimfuryasi/6f6c04fe0a357b4665154380bacb74f1 to your computer and use it in GitHub Desktop.
Kaç gün, saniye yaşadın?
import datetime
print("Tarihi gün, ay, yıl olarak yazınız. Örn: 04.11.1993")
dogumTarihi = datetime.datetime.strptime(input("Tarih: "), "%d.%m.%Y")
yas = datetime.datetime.now().today()
sonuc = yas - dogumTarihi
print(f"{sonuc.days} Gün\n{sonuc.seconds} Saniye\n{sonuc.microseconds} Mikrosaniye")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment