Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 67)
67.
How can you read and print the lines containing the word "Python" in a case-insensitive manner from a file named "code.txt"?
with open("code.txt", "r") as file:
    lines = file.readlines()
    for line in lines:
        if "Python" in line.lower():
            print(line)
print_python_lines("code.txt")
with open("code.txt", "r") as file:
    print(file.read("Python"))
with open("code.txt", "r") as file:
    for line in file:
        if "Python".casefold() in line:
            print(line)
Answer: Option
Explanation:
Using line.lower() to make the comparison case-insensitive.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.