python中如何把一段文字中的空格替换成换行符


 

1.python中如何把一段文字中的空格替换成换行符

 

def delblankline(infile, outfile):
    infopen = open(infile, 'r', encoding="utf-8")
    outfopen = open(outfile, 'w', encoding="utf-8")
    db = infopen.read()
    outfopen.write(db.replace(' ', '\n'))
    infopen.close()
    outfopen.close()


delblankline(r'ces\D1.txt', r'ces\1.txt')

 

亲测有效

 

 

原文参考:https://www.jb51.net/article/136706.htm


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM