{site_name}

{site_name}

🌜 搜索

Python中的time模块提供了与时间相关的函数

Python 𝄐 0
python time_ns,python time.now,python中的time,python中time.time,python @time,python里的time.time()
Python中的time模块提供了与时间相关的函数。它可以用于获取当前时间,休眠程序一段时间,格式化日期和时间等操作。

以下是一些常见用法示例:

1. 获取当前时间:

python
import time

current_time = time.time()

print(current_time)


输出结果为:一个浮点数,代表从 "epoch"(1970年1月1日 00:00:00 UTC)到现在所经过的秒数。

2. 休眠程序:

python
import time

print("Start")
time.sleep(3)
print("End")


输出结果为:先打印出 "Start",然后程序暂停3秒钟,最后打印出 "End"。

3. 格式化日期和时间:

python
import time

print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))


输出结果为:当前时间的字符串表示,例如 "2023-03-27 12:34:56"。

其中,strftime()函数将时间元组(由time.localtime()返回)转换为指定格式的字符串。

以上只是time模块的部分用法示例,你可以通过查阅Python官方文档来了解更多细节。