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

User Pokrate
by
3.8k points

1 Answer

3 votes

Answer:

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

User Claes Wikner
by
3.7k points