Answers for "read text file items and put in a list python"

2

how to put a text file into a list python

# name.txt
david
mary
john


with open('names.txt', 'r') as f:
    myNames = [line.strip() for line in f]
    
# Result

['david','mary','john']
Posted by: Guest on December-08-2020
3

python read text file into a list

text_file = open("filename.dat", "r")
lines = text_file.readlines()
print lines
print len(lines)
text_file.close()
Posted by: Guest on March-22-2020

Code answers related to "read text file items and put in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language