Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 50)
50.
How can you read and print the lines containing both "Python" and "programming" from a file named "code.txt"?
with open("code.txt", "r") as file:
    lines = file.readlines()
    for line in lines:
        if "Python" in line and "programming" in line:
            print(line)
print_python_programming_lines("code.txt")
with open("code.txt", "r") as file:
    print(file.read("Python programming"))
with open("code.txt", "r") as file:
    for line in file:
        if "Python" in line:
            print(line)
        elif "programming" in line:
            print(line)
Answer: Option
Explanation:
Using in to check for both "Python" and "programming" in each line.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.