1. 程式人生 > >Python筆記27----時間解析

Python筆記27----時間解析

str .com 分享圖片 href www 元組 port struct width

1、將時間字符串解析成真正的時間 time.strptime

http://www.runoob.com/python/att-time-strptime.html

技術分享圖片

代碼:

 
import time
 
struct_time = time.strptime("30 Nov 00", "%d %b %y")
print("返回的元組: %s " % (struct_time,))
print(type(struct_time))
print("返回的元組: %s " % struct_time.tm_year)

Python筆記27----時間解析