date time

This commit is contained in:
Mert Gör ☭ 2023-06-20 23:17:18 +03:00
parent 681064c1cc
commit 4cf8ee7289
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
2 changed files with 8 additions and 0 deletions

4
python-temel/datetime.py Normal file
View File

@ -0,0 +1,4 @@
import datetime
d = datetime.date(2009, 12, 5)
print('{}/{}/{}'.format(d.day, d.month, d.year))

View File

@ -0,0 +1,4 @@
import datetime
d = datetime.date(2009, 12, 5)
print('{}/{}/{}'.format(d.day, d.month, d.year))