Answers for "how to read a text file to a list in 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
1

how to read from a file into a list in python

f = open(filename, "r")
   listItems = f.read().splitlines()
Posted by: Guest on April-20-2020

Code answers related to "how to read a text file to a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language