Answers for "python reading .txt files"

41

python read file

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

how to read a file in python

# when you want to read the file from terminal in python use 
import sys
f = open(sys.argv[1])
line=f.readline()
Posted by: Guest on March-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language