Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mustafamuratcoskun
GitHub Repository: mustafamuratcoskun/Sifirdan-Ileri-Seviyeye-Python-Programlama
Path: blob/master/İleri Seviye Modüller/Videolarda Kullanılan Kodlar/DateTime Modülü/DateTime.py
765 views
1
from datetime import datetime
2
import locale
3
4
locale.setlocale(locale.LC_ALL,"")
5
6
7
tarih = datetime(2019,12,1)
8
9
şu_an = datetime.now()
10
11
12
print(tarih - şu_an)
13
14