129k views
2 votes
Complete the code to create a new file.
aFile = open("stuff.txt", "__")

User Pokrate
by
8.0k points

1 Answer

3 votes

Answer:

aFile = open("stuff.txt", "w")

User Claes Wikner
by
8.0k points