Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 2)
2.
How can you read the entire contents of a file named "data.txt" into a string?
content = read_file("data.txt")
content = open("data.txt").read()
content = file.read("data.txt")
content = open_file("data.txt", "r")
Answer: Option
Explanation:
Using the read() method on the file object reads the entire contents of the file into a string.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.