Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python read file txt and return list of each lines

with open('file.txt', 'r') as f:
	data = f.read().splitlines()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #read #file #txt #return #list #lines
ADD COMMENT
Topic
Name
1+5 =