time strftime()接收时间元组,返回表示时间的字符串。
time strptime()把时间字符串,解析成一个时间元组。
import time
t = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
print(t)
print(time.strptime(t,'%Y-%m-%d %H:%M:%S'))