当前位置:主页 > 软件编程 > Python代码 >

python 包实现 time 时间管理操作

时间:2022-06-22 09:38:35 | 栏目:Python代码 | 点击:

一、当前时间戳

import time

time.time()

二、获取当前时间字符串

import time

time.ctime()

三、获取当前计算机时间格式

import time

time.gmtime()

四、格式化时间显示

import time

t=time.gmtime()
time.strftime("%Y-%m-%d %H:%M:%S", t)

五、字符串转为计算机格式

import time

timeStr='2022-04-10 12:55:20'
time.strptime(timeStr,"%Y-%m-%d %H:%M:%S")

六、精确时间计数值

import time

startTime = time.perf_counter()
startTime = time.perf_counter()
print(endTime-startTime)

七、休眠等待

import time

time.sleep(5)

您可能感兴趣的文章:

相关文章