标签:bsp ftime mon 时间戳 字符串 格式化 log localtime int
time.time() 获取当前时间戳。
time.ctime() 当前时间的字符串形式。
time.localtime() 当前时间的 struct_time 形式。
time.strftime() 用来获得当前时间,可以将时间格式化为字符串
import time print(time.time()) print(time.ctime()) print(time.localtime()) print(time.strftime(‘%Y_%m_%d %H:%M:%S‘))
1497414977.1362307
Wed Jun 14 12:36:17 2017
time.struct_time(tm_year=2017, tm_mon=6, tm_mday=14, tm_hour=12, tm_min=36, tm_sec=17, tm_wday=2, tm_yday=165, tm_isdst=0)
2017_06_14 12:36:17
Process finished with exit code 0
标签:bsp ftime mon 时间戳 字符串 格式化 log localtime int
原文地址:http://www.cnblogs.com/UncleYong/p/7008203.html