标签: python string line
我正在尝试编写一个将文本文件转换为python列表的函数。我是新手,所以我不能使用软件包,但可以使用strip(),split()和join()之类的函数。
strip()
split()
join()
我到目前为止所拥有的:
def process_line (file): a = file.strip() b = a.split() c = b.join() return c