I wrote this code in Python:
import datetime
print(datetime.datetime.fromtimestamp(0).strftime('%Y-%m-%d %H:%M:%S'))
It gave me:
1970-01-01 05:30:00
What is so special about this date and time in programming, especially to Python?
I wrote this code in Python:
import datetime
print(datetime.datetime.fromtimestamp(0).strftime('%Y-%m-%d %H:%M:%S'))
It gave me:
1970-01-01 05:30:00
What is so special about this date and time in programming, especially to Python?