Answers for "how can create a text file from 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

Code answers related to "how can create a text file from list python"

Python Answers by Framework

Browse Popular Code Answers by Language