Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 54)
54.
How can you read and print the lines from a file named "book.txt" in reverse order?
with open("book.txt", "r") as file:
    lines = file.readlines()
    for line in reversed(lines):
        print(line)
print_reverse_lines("book.txt")
with open("book.txt", "r") as file:
    print(file.read()[::-1])
with open("book.txt", "r") as file:
    lines = file.readlines()
    for line in lines.reverse():
        print(line)
Answer: Option
Explanation:
Using reversed() to iterate through lines in reverse order.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.