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

asked
User Pokrate
by
8.3k points

1 Answer

3 votes

Answer:

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

answered
User Claes Wikner
by
8.7k points