Answers for "how to get a list of files as a string in python"

3

python read file in string list

# read file in a string list
with open(fileName) as f:
	lineList = f.readlines()
Posted by: Guest on February-22-2020

Code answers related to "how to get a list of files as a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language