【Python 基础】读取系统当前时间例子
返回: Python基础 索引页
这是一个读取系统当前时间的小例子:
import datetime currenttime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print (currenttime)
运行结果:
2022-03-01 22:42:37
返回: Python基础 索引页
返回: Python基础 索引页
这是一个读取系统当前时间的小例子:
import datetime currenttime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print (currenttime)
运行结果:
2022-03-01 22:42:37
返回: Python基础 索引页