Answers for "put read file python in function"

41

python read file

with open("file.txt", "r") as txt_file:
  return txt_file.readlines()
Posted by: Guest on November-30-2020
0

how to read a file in python

# How to read, and print to the screen a file in python!

f = open('fileName', 'r')
print(f.read())
f.close()

# Where "fileName" is obviously the name of your file that you want to read.
Posted by: Guest on August-29-2021

Code answers related to "put read file python in function"

Python Answers by Framework

Browse Popular Code Answers by Language