How to get detailed time year, month, day, hour, minute, second, week and year day in Python

1 Answer

0 votes
import time

current = time.gmtime()

print("Year:", current.tm_year)
print("Month:", current.tm_mon)
print("Month day:", current.tm_mday)
print("Hour:", current.tm_hour)
print("Minute:", current.tm_min)
print("Second:", current.tm_sec)
print("Week day:", current.tm_wday)
print("Year day:", current.tm_yday)
print("Is DST:", current.tm_isdst)


'''
run:
 
Year: 2018
Month: 11
Month day: 15
Hour: 7
Minute: 48
Second: 40
Week day: 3
Year day: 319
Is DST: 0

'''

 



answered Nov 15, 2018 by avibootz
...