Python文件读写

 1 #Filename: file_read_and_write.py
 2 #打开文件,cNames读取所有行,储存在列表中,循环对每一行在起始处加上序号1,2,3,4
 3 with open(r'file/companies.txt') as f1:
 4     cNames = f1.readlines()
 5     for i in range(0,len(cNames)):
 6         cNames[i] = str(i+1) + '.' + '' + cNames[i]
 7 
 8 #将处理过的cNames写入新的文件中
 9 with open(r'file/scompanies.txt','w') as f2:
10     f2.writelines(cNames)

输入: companies.txt

google
tencent
alibaba
baidu

输出:scompanies.txt

1.google
2.tencent
3.alibaba
4.baidu
原文地址:https://www.cnblogs.com/huahuayu/p/8093459.html