Answer (Choose 1 answer)
What do the following lines of code do? with open("Example3.txt","a") as file1:file1.write("This is line C")
A. Read the file "Example3.txt"
B. Write to the file "Example3.txt"
C. Append the file "Example3.txt"
D. None of others
6