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