Converting unix timestamp string to readable date

前端 未结 15 2460
别跟我提以往
别跟我提以往 2020-11-22 04:30

I have a string representing a unix timestamp (i.e. \"1284101485\") in Python, and I\'d like to convert it to a readable date. When I use time.strftime, I get a

15条回答
  •  甜味超标
    2020-11-22 05:21

    quick and dirty one liner:

    '-'.join(str(x) for x in list(tuple(datetime.datetime.now().timetuple())[:6]))
    

    '2013-5-5-1-9-43'

提交回复
热议问题