def file2list(filepath): f = open(filepath, 'r') return [x.strip() for x in f.readlines()]