Q.

To open a file c:\scores.txt for appending data, we use                          

A. outfile = open(“c:\\scores.txt”, “a”)
B. outfile = open(“c:\\scores.txt”, “rw”)
C. outfile = open(file = “c:\\scores.txt”, “w”)
D. outfile = open(file = “c:\\scores.txt”, “w”)
Answer» A. outfile = open(“c:\\scores.txt”, “a”)
Explanation: a is used to indicate that data is to be appended.
1.6k
0
Do you find this helpful?
10

Discussion

No comments yet