要读取当前时间精度到秒的代码,在Python中可以使用标准库中的datetime
模块。具体实现方法如下:
- 首先,我们需要导入
datetime
模块,使用datetime
类和strftime
函数。
import datetime
now = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
print(now)
上述代码中,datetime.datetime.now()
获取当前时间,strftime
函数可以将时间格式化为指定的字符串形式,例如%Y-%m-%d %H:%M:%S
就是表示年月日时分秒的形式,将当前时间格式化后输出。
输出结果:
2021-09-09 14:25:45
- 此外,我们也可以用类似于下面的代码来实现:
import time
now = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
print(now)
time.time()
获取当前时间戳,在localtime
函数中将时间戳转换为时间元组,最终使用strftime
函数将时间格式化输出。
输出结果:
2021-09-09 14:25:45
以上两种方法都可以实现读取当前时间精度到秒的代码,你可以根据自己的需求选择使用哪种方法。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python读出当前时间精度到秒的代码 - Python技术站