标签: python
有人能告诉我如何在python中读取文件到数组吗?
文本文件如下所示:
Apples,78 Pears,45 Oranges,99 Grapes,44
数组应如下:
Fruit=[Apples,78],[Pears,45],[Oranges,99],Grapes,44]
答案 0 :(得分:1)
您可以在一行中尝试:
with open("file.txt") as f: print([i.strip().split(',') for i in f])