121k views
0 votes
Which statement opens a file in such a way that information will only be written to its end?

User ZacWolf
by
6.4k points

1 Answer

2 votes
outputFile = open( "/path/to/file", "wa" ) # DOS probably needs 'b' too
User Rmg
by
6.9k points