首页 > 代码库 > time

time

 

 

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

time