To Open A File Cscorestxt For Appending Data We Use #1010
To open a file c:\scores.txt for appending data, we use ____________
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Files - Python Files - Quiz No.1.
To open a file c:\scores.txt for appending data, we use ____________
outfile = open(“c:\\scores.txt”, “a”)
outfile = open(“c:\\scores.txt”, “rw”)
outfile = open(file = “c:\scores.txt”, “w”)
outfile = open(file = “c:\\scores.txt”, “w”)