在python 里如何用replace删除文本里所有的空行
发布网友
发布时间:2022-04-25 15:36
我来回答
共3个回答
热心网友
时间:2023-10-13 12:43
非要用replace吗,我都是用
x for x in L where L!=‘\n'
来去除空行的
热心网友
时间:2023-10-13 12:44
# coding=utf-8
file = open("blank.txt","r")
file2 = open("noblank.txt","w")
while 1:
text = file.readline()
if( text == '' ):
print "结束"
break
elif( text == '\n'):
print "换行符"
else:
file2.write( text )
print text
file.close()
file2.close()
raw_input()
热心网友
时间:2023-10-13 12:44
eg:
a="dhfhf kgkg gjg"
b=a.replace(" ","")