你如何将文本文件读入数组python

时间:2017-09-30 14:32:26

标签: python

有人能告诉我如何在python中读取文件到数组吗?

文本文件如下所示:

Apples,78
Pears,45
Oranges,99
Grapes,44

数组应如下:

Fruit=[Apples,78],[Pears,45],[Oranges,99],Grapes,44]

1 个答案:

答案 0 :(得分:1)

您可以在一行中尝试:

with open("file.txt") as f:
    print([i.strip().split(',') for i in f])