Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 24)
24.
How can you read and print only the lines containing the word "Python" from a file named "text.txt"?
lines = open("text.txt").readlines()
    for line in lines:
    if "Python" in line:
        print(line)
with open("text.txt", "r") as file:
    for line in file:
        if "Python" in line:
            print(line)
print_python_lines("text.txt")
with open("text.txt", "r") as file:
    print(file.read("Python"))
Answer: Option
Explanation:
Using a for loop to iterate through the lines and printing lines containing "Python".
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.