【Python 基础】读取系统当前时间例子
作者:互联网
返回: Python基础 索引页
这是一个读取系统当前时间的小例子:
import datetime currenttime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print (currenttime)
运行结果:
2022-03-01 22:42:37
返回: Python基础 索引页
标签:-%,读取,currenttime,Python,datetime,索引,例子 来源: https://www.cnblogs.com/gaojian/p/15953036.html