013python路--time模块
Posted 5014sy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了013python路--time模块相关的知识,希望对你有一定的参考价值。
import time
print(help(time.strftime))#注释文档
***time.sleep(0.1)
***print(time.time())#时间戳1539659532.6734543
print(time.mktime(time.localtime())#得到时间戳
print(time.clock())计算CPU执行时间
time-->str
time_format = ‘%Y%m%d %X‘ %H%M%S
***time_current = time.strftime(time_format)
print(time_current)
----------------------------------------------------------
***struct_time=time.localtime()
print(time.strftime(‘%Y-%m-%d %H-%M-%S‘,struct_time))
----------------------------------------------------------
***print(time.strftime(‘%Y-%m-%d %H-%M-%S‘))
====================================================================
str-->time
time.strptime(‘2016-09-08‘,‘%Y-%m-%d‘)
time.struct_time(tm_year=2016, tm_mon=9, tm_mday=8, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=252, tm_isdst=-1)
-------------------------------------------------------
a = time.strptime(‘2016-09-08‘,‘%Y-%m-%d‘)
print(a.tm_year)#得到年
a = time.gmtime() #结构化时间
print( a ) #UTC--世界标准时间
print(type(a))#<class ‘time.struct_time‘>
---------------------------------------------------------
**print(time.localtime()) #当地时间,对应gmtime
时间戳,格式时间,字符串时间,得到时间
import datetime
print(datetime.datetime.now())
#2018-10-16 12:02:13.488477
print(type(datetime.datetime.now()))
#<class ‘datetime.datetime‘>
str()--将class转化为str
以上是关于013python路--time模块的主要内容,如果未能解决你的问题,请参考以下文章