gpt4 book ai didi

python-3.x - datetime strftime %s 在 Windows 上崩溃

转载 作者:行者123 更新时间:2023-12-05 05:22:18 34 4
gpt4 key购买 nike

我有一段代码在 windows 上失败,但在 linux 上工作:

import datetime as dt

ts = dt.datetime.now().__format__('%s')
#ts == '1479831118'

我查看了文档 (Python 3.5),那里根本不存在“格式 %s”。

如何解决这个问题并从 Linux 获得相同的输出?

谢谢

最佳答案

您提供的代码以秒为单位输出当前时间。

我可能会推荐使用 time 模块。

这将返回相同的结果。

import time
ts = str(int(time.time()))

关于python-3.x - datetime strftime %s 在 Windows 上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40746679/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com