Python如何将时间戳转换为指定格式日期?
Python如何将时间戳转换为指定格式日期?参考下这个链接https://www.runoob.com/python3/python-timstamp-str.html otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S") https://www.runoob.com/python3/python-timstamp-str.html # 获得当前时间
now = datetime.datetime.now()
# 转换为指定的格式
otherStyleTime = now.strftime("%Y-%m-%d %H:%M:%S")
print(otherStyleTime) 可以用timestamp转换
页:
[1]