Python File I/O: Read a file line by line store it into a variable
6. File to Variable
Write a Python program to read a file line by line store it into a variable.
Sample Solution:-
Python Code:
def file_read(fname):
with open (fname, "r") as myfile:
data=myfile.readlines()
print(data)
file_read('test.txt')
Sample Output:
['Welcome to w3resource.com.\n', 'Append this text.Append this text.Append this text.\n', 'Append this text.\n ', 'Append this text.\n', 'Append this text.\n', 'Append this text.\n']
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to read a file line by line and store the entire content in a single string variable, then print it.
- Write a Python program to read a file into a variable and count the occurrences of a specific substring within it.
- Write a Python program to read a file into a variable, split the content into words, and display the first ten words.
- Write a Python program to read a file’s content into a variable and output its total length in characters.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to read a file line by line and store it into a list.
Next: Write a Python program to read a file line by line store it into an array.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.