Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
unexpected object?
#2
Will be trouble if try to generate new file in each loop.
So have the making of file object outside of the loop,then write to file in the loop.
file_name = "temp.txt"
with open(file_name, "a") as file:
    while True:
        name = input("Your name, again:")
        if name == "":
            break
        else:
            file.write(f'{name}\n')
Reply


Messages In This Thread
unexpected object? - by urufu - Mar-08-2020, 02:06 PM
RE: unexpected object? - by snippsat - Mar-08-2020, 02:29 PM
RE: unexpected object? - by urufu - Mar-08-2020, 02:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Getting an unexpected generator object ? mcgrim 19 7,369 Mar-29-2019, 11:35 AM
Last Post: gontajones

Forum Jump:

User Panel Messages

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