How to create a file name with the current date & time in Python?

后端 未结 6 1364
北海茫月
北海茫月 2020-12-07 07:40

Here is a functional code (create file with success)

sys.stdout = open(\'filename1.xml\', \'w\')

Now I\'m trying to name the file with the cu

6条回答
  •  眼角桃花
    2020-12-07 08:21

    Change this line

    filename1 = datetime.now().strftime("%Y%m%d-%H%M%S")
    

    To

    filename1 = datetime.datetime.now().strftime("%Y%m%d-%H%M%S")
    

    Note the extra datetime. Alternatively, change your import datetime to from datetime import datetime

提交回复
热议问题