9 lines
104 B
Python
9 lines
104 B
Python
|
|
|
|
def file2list(filepath):
|
|
f = open(filepath, 'r')
|
|
return [x.strip() for x in f.readlines()]
|
|
|
|
|
|
|