在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(" ","")
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com