日与月份参数未填写? (日期时间)

发布于 2025-01-10 00:10:56 字数 281 浏览 0 评论 0原文

我试图弄清楚如何返回现在与今年最后一分钟之间的时间差。我似乎收到错误消息“参数‘日’未填充”和“参数‘月’未填充”。

 from datetime import datetime
        rn = datetime.now()
        ny = datetime('2022, 12, 31, 23, 59')
        df = ny - rn
        print(df.total_seconds())

如果有人可以帮忙解决这个问题,我们将不胜感激!

I'm trying to figure out how to return the difference of time in between now and from the last minute of this year. I seem to be getting errors saying "Parameter 'day' unfilled" and "Parameter 'month' unfilled".

 from datetime import datetime
        rn = datetime.now()
        ny = datetime('2022, 12, 31, 23, 59')
        df = ny - rn
        print(df.total_seconds())

if anyone could help out with this that would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

镜花水月 2025-01-17 00:10:56

您使用单个字符串作为参数,您必须使用 strptime 来解析该字符串,或者以其他方式从字符串中获取实际数字

datetime(2022, 12, 31, 23, 59)
datetime.strptime('2022, 12, 31, 23, 59', "%Y, %m, %d, %H, %M")

You used a single string as parameter, you'd have to either use strptime to parse the string, or otherwise get your actual numbers out of the string

datetime(2022, 12, 31, 23, 59)
datetime.strptime('2022, 12, 31, 23, 59', "%Y, %m, %d, %H, %M")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文