Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 9)
9.
How can you write a list of strings to a file named "output.txt"?
write_file("output.txt", ["line1", "line2", "line3"])
file.write(["line1", "line2", "line3"])
write_lines("output.txt", ["line1", "line2", "line3"])
with open("output.txt", "w") as file: file.writelines(["line1", "line2", "line3"])
Answer: Option
Explanation:
The writelines() method is used to write a list of strings to a file in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.