python-CSD-kursu/python-temel/datetime_example.py

5 lines
97 B
Python
Raw Normal View History

2023-06-20 23:17:18 +03:00
import datetime
d = datetime.date(2009, 12, 5)
print('{}/{}/{}'.format(d.day, d.month, d.year))