Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to include a dynamic date in a string

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;

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

from datetime import date

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

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

>Solution :

Does this solve your problem?

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

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading