将文本文件转到列表的功能

时间:2019-12-06 19:07:52

标签: python string line

我正在尝试编写一个将文本文件转换为python列表的函数。我是新手,所以我不能使用软件包,但可以使用strip()split()join()之类的函数。

我到目前为止所拥有的:

def process_line (file):
    a = file.strip()
    b = a.split()
    c = b.join()
    return c

0 个答案:

没有答案