Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 646 Bytes

55.md

File metadata and controls

20 lines (13 loc) · 646 Bytes
rank vote view answer url
55 2027 3678001 28 url

把文件一行行读入数组

怎么样才能一行行的读一个文件并把每行作为一个元素存入一个数组?

我想读取文件的没一行,然后把每行加入到数组的最后.我没找到这样的方法而且我也没能在Python中找到创建字符数组的方法.


with open(fname) as f:
    content = f.readlines()

我想你说的是[list](http://docs.python.org/glossary.html#term-list)而不是数组.