如何在字符串中包含动态日期
我正在尝试编写每日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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以解决您的问题吗?
Does this solve your problem?
您正在尝试将字符串与DateTime对象相连。
您可以使用F字符串来管理问题:
You are trying to concatenate string with a datetime object.
You can use f string to manage the problem: