4 lines
80 B
Python
4 lines
80 B
Python
>>> import time
|
|
>>> time.asctime(time.gmtime(0))
|
|
'Thu Jan 1 00:00:00 1970'
|
|
>>>
|