测试积点老人 发表于 2020-12-30 13:32:46

Python如何将时间戳转换为指定格式日期?

Python如何将时间戳转换为指定格式日期?


bellas 发表于 2020-12-31 09:38:00

参考下这个链接https://www.runoob.com/python3/python-timstamp-str.html

海海豚 发表于 2020-12-31 09:43:40

otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")

Miss_love 发表于 2020-12-31 10:05:10

https://www.runoob.com/python3/python-timstamp-str.html

litingting0214 发表于 2020-12-31 10:17:38

# 获得当前时间
now = datetime.datetime.now()
# 转换为指定的格式
otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")
print(otherStyleTime)

qqq911 发表于 2020-12-31 10:48:16

可以用timestamp转换
页: [1]
查看完整版本: Python如何将时间戳转换为指定格式日期?