当前位置: 首页 > 图灵资讯 > 行业资讯> python strftime获取当前时间

python strftime获取当前时间

来源:图灵python
时间: 2024-07-25 20:18:22

说明

1、与单日期相关的数据可以通过strptime()函数获得。

2、strftime()函数的第二个参数接受struct_time对象。将秒数转换为标准时间。如果没有参数,回到当前时间。time.localtime()的功能是将格式时间戳作为具有sec参数的本地时间,即相应的time.time()函数的秒数,

实例

importtime

s=time.strftime("%H:%M:%S",time.localtime())
print(s)

以上是python strftime获得当前时间,希望对大家有所帮助。更多Python学习指导:基础教程python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。