This commit is contained in:
Mert Gör 🇹🇷 2023-06-20 23:32:12 +03:00
parent 496704023e
commit 9bed30e452
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

5
python-temel/ctime.py Normal file
View File

@ -0,0 +1,5 @@
import datetime
d = datetime.date(1999, 8, 17)
s = d.ctime()
print(s)