标签:
ID, name, score
1302303069, qxj511, 98.80
1302303070, zhy, 99.90
fd = open("qxj511.txt","r")
st = fd.readlines()
print st // 一次性打印列表的所有的成员
for s in st:
s = s.rstrip("\n")
print s // 逐一打印
fd.close()
fd = open("qxj511.txt","w")
li = [1302303069,"qxj511",88.88]
lj = [1302303070,"zhy",99.99]
for s2 in li: // 列表依次取出
fd.write(str(s2)) // 依次写入,这里使用 str 将列表的内容转为字符串写入
fd.write(" ")
fd.write("\n")
i = 0
while i<=len(lj)-1 : // 使用 while的方式写入,
fd.write(str(lj[i]) + " ")
i = i + 1
fd.close()
标签:
原文地址:http://www.cnblogs.com/qxj511/p/4918827.html