Python Forum
New .txt file Generation in Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New .txt file Generation in Python
#1
I want to create a new .txt file every time i run the python script. Any idea how to do that . My current code :

def write_up_commands(up_int):
    fp = open('./abc.txt', 'a+')
    for i in up_int:
        fp.write('int ' + i + '\n mode \n')
    fp.close()
something like

1_abc
2_abc
3_abc
can i add a date/timestamp ?
Reply
#2
If you want to have a new numeric index, you would use os.listdir to get all the current files, split('-') to get the indexes from the current files, and then max() + 1 of that gives you the new index for the new file.

If you want to have a date/timestamp, you would use the datetime module to get that, and just add it to the file name.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Parquet file generation woliveiras 1 612 Dec-07-2024, 02:52 AM
Last Post: deanhystad
  Node Flow Generation in Python Linenloid 0 1,106 Feb-21-2023, 07:09 PM
Last Post: Linenloid
  Allure Report Generation rotemz 0 1,377 Jan-24-2023, 08:30 PM
Last Post: rotemz
Question PDF generation / edit SpongeB0B 2 2,795 Jul-28-2021, 05:59 AM
Last Post: SpongeB0B

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020