python 读取文件转换为列表

2024-12-15 11:43:57
推荐回答(2个)
回答1:

python 读取文本文件内容转化为python的list列表,案例如下:

1、目的

读取cal.txt内容,然后通过python脚本转化为list内容

2、文件内容

cal.txt

12
13
14
15
16

3、Python编写cal.py脚本内容

#!/usr/bin/python
#coding = UFT-8
result=[]
fd = file( "cal.txt", "r" )
for line in fd.readlines():
    result.append(list(map(int,line.split(','))))
print(result)

for item in result:
    for it in item:
       print it

4、执行转换为List列表结果内容:

[[12], [13], [14], [15], [16]]
12
13
14
15
16

回答2:

rs = []
for ln in file('a.txt','rt'):
rs.extend(ln.strip().split(' '))