Answers for "open file txt python"

29

get text from txt file python

with open ("data.txt", "r") as myfile:
    data = myfile.read().splitlines()
Posted by: Guest on December-10-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