Python实现在⽂件中的每⼀⾏添加⼀个逗号
步骤1:读取每⾏(每⾏的类型是str)
步骤2:对每⾏列表化
步骤3:弹出每⾏的/n两个字符
步骤4:追加,/n三个字符
代码实现如下:
#import os
From_file=open('D:\\python\\A\\')
f=open('','w')
count=0
huancun=[]writelines在python中的用法
for each_line in From_file:
#print(type(each_line)) each_line 是字符类型
Delstr=list(each_line)
Delstr.pop() #弹出n
Delstr.pop() #弹出\
Delstr.append(',\n')
huancun="".join(Delstr)
print(huancun)
f.writelines(huancun)
count+=1
huancun=[]
f.close()
From_file.close()
print('⽂件中总共有:%d⾏'%count)
以上这篇Python 实现在⽂件中的每⼀⾏添加⼀个逗号就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。