please help. data.txt don't need to exist. just assume it is there
data.txt
davidmacago asked a year ago
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.
'r'
open
with
def read_file(file): with open(file, 'r') as file: for line in file: print(line.strip()) read_file("data.txt")
ShareReportdavidap answered a year ago
Reading books is a great way to learn. Here are some of the books we recommend.
Rich Dad Poor Dad: 2...
Think and Grow Rich
Dotcom Secrets: The ...
$100M Offers: How to...
you can pass file path and second argument as
'r'
inopen
method to read the file.with
makes sure to close the process once the reading is done.