All about the epoch

Report a typo

You and your friend study Python together. You told them about the time module and the epoch concept in it. Now they wonder when the epoch on their system starts. Could you kindly show them how to check that? Please, print the result.

Sample Input 1:

Sample Output 1:

time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)
Write a program in Python 3
import time

# put your python code here
___

Create a free account to access the full topic