您好,登錄后才能下訂單哦!
這篇文章主要介紹了利用python怎么將文本中的空格替換為換行,億速云小編覺得不錯,現(xiàn)在分享給大家,也給大家做個參考,一起跟隨億速云小編來看看吧!
Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨立的項目和大型項目。
測試文本 jb51.txt
welcome to jb51.net
I love you very much
python代碼
# -*- coding: utf-8 -*- ''' 遇到文中的空格就換行 ''' 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("yisu.com", "o3.txt")
效果圖
主要就是用到了replace函數(shù)
Python3 replace()方法
描述
replace() 方法把字符串中的 old(舊字符串) 替換成 new(新字符串),如果指定第三個參數(shù)max,則替換不超過 max 次。
語法
replace()方法語法:
str.replace(old, new[, max])
參數(shù)
old -- 將被替換的子字符串。
new -- 新字符串,用于替換old子字符串。
max -- 可選字符串, 替換不超過 max 次
返回值
返回字符串中的 old(舊字符串) 替換成 new(新字符串)后生成的新字符串,如果指定第三個參數(shù)max,則替換不超過 max 次。
實例
以下實例展示了replace()函數(shù)的使用方法:
#!/usr/bin/python3 str = "歡迎訪問億速云kemok4.com" print ("億速云舊地址:", str) print ("億速云新地址:", str.replace("yisu.com", "yisu.cn")) str = "this is string example....wow!!!" print (str.replace("is", "was", 3))
以上就是億速云小編為大家收集整理的利用python怎么將文本中的空格替換為換行,如何覺得億速云網(wǎng)站的內(nèi)容還不錯,歡迎將億速云網(wǎng)站推薦給身邊好友。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。