如何在字符串中包含动态日期

发布于 2025-01-21 12:22:36 字数 266 浏览 0 评论 0原文

我正在尝试编写每日CSV文件,但希望CSV文件的标题指定今天的日期。

似乎每次都失败了,但我敢肯定有一种简单的方法可以做到。 希望这不是重复的,但似乎找不到另一个类似的问题。

在那一刻,我刚刚尝试过。

from datetime import date

morningupdate.to_csv('morningupdate' + '_' + date.today() '.csv')

我的大脑对此完全被打破了,任何帮助!

I'm trying to write a daily csv file but would like the title of the csv file to specify today's date.

It seems to be failing every time but I'm sure there's an easy way to do this..?
Hopefully this isn't a duplicate but can't seem to find another question similar.

At the minute I've just tried this;

from datetime import date

morningupdate.to_csv('morningupdate' + '_' + date.today() '.csv')

My brain is completely broken with this, any help much appreciated!

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

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

发布评论

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

评论(2

三五鸿雁 2025-01-28 12:22:36

这可以解决您的问题吗?

from datetime import date
    
morningupdate.to_csv(f'morningupdate_{date.today()}.csv')

Does this solve your problem?

from datetime import date
    
morningupdate.to_csv(f'morningupdate_{date.today()}.csv')
妖妓 2025-01-28 12:22:36

您正在尝试将字符串与DateTime对象相连。

您可以使用F字符串来管理问题:

from datetime import date

path = f'morningupdate_{date.today()}.csv'
morningupdate.to_csv(path)

You are trying to concatenate string with a datetime object.

You can use f string to manage the problem:

from datetime import date

path = f'morningupdate_{date.today()}.csv'
morningupdate.to_csv(path)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文