How to convert epoch to datetime in Python

3 Answers

0 votes
import time

epoch_time = 1619177980

struct_time = time.localtime(epoch_time)

print(struct_time)





 
'''
run:
  
time.struct_time(tm_year=2021, tm_mon=4, tm_mday=23, tm_hour=11, tm_min=39, tm_sec=40, tm_wday=4, tm_yday=113, tm_isdst=0)
   
'''

 



answered Apr 21, 2021 by avibootz
0 votes
import time

epoch_time = 1619177980

s = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(epoch_time))

print(s)





 
'''
run:
  
2021-04-23 11:39:40
   
'''

 



answered Apr 21, 2021 by avibootz
0 votes
import datetime

epoch_time = 1619177980

dt = datetime.datetime.fromtimestamp(epoch_time)

print(dt)





 
'''
run:
  
2021-04-23 11:39:40
   
'''

 



answered Apr 21, 2021 by avibootz

Related questions

3 answers 206 views
2 answers 191 views
1 answer 145 views
2 answers 173 views
3 answers 256 views
3 answers 328 views
...