Logo
1

Write a Python code to read a file data.txt and print its contents line by line.

please help. data.txt don't need to exist. just assume it is there

davidmacagodavidmacago asked a year ago

·

Answers

1

you can pass file path and second argument as 'r' in open method to read the file. with makes sure to close the process once the reading is done.

def read_file(file):
    with open(file, 'r') as file:
        for line in file:
            print(line.strip())

read_file("data.txt")

davidapdavidap answered a year ago

Lear more about `open`: https://docs.python.org/3/library/functions.html#open

davidap commented a year ago·

Post your answer

Recommended Books

Reading books is a great way to learn. Here are some of the books we recommend.