共计 385 个字符,预计需要花费 1 分钟才能阅读完成。
用 time 模块获取工夫
import time
print(time.time())
1586813438.419919
print(time.ctime())
Mon Apr 13 23:30:38 2020
用 datetime 模块获取工夫
import datetime
print(datetime.datetime.now())
2021-11-13 23:30:38.419951
print(datetime.date.today())
2021-11-13
用 os 模块获取工夫
import os
os.system(‘date’)
Sun Feb 20 10:12:36 UTC 2022
os.system(‘date +”%Y-%m-%d %H:%M:%S”‘)
2022-02-20 10:30:09
3 ways to get the current time in python
10 tips to use Python OS module
正文完