for i in new_list:
print time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.localtime(i/1000000))
new_list
是以微秒爲單位的unix時間戳的列表。我希望將列表中的每個元素都轉換爲正常的日期時間。我得到錯誤如何將unix時間戳列表轉換爲人類可讀日期列表
"TypeError: unsupported operand type(s) for /: 'str' and 'int'"..Please help me out
什麼是正常的日期時間? 'new_list'中有什麼? –
new_list是各種unix時間戳的列表。我想將new_list轉換爲人類可讀的日期。 – venkatsai