當前位置:首頁 » 編程語言 » python字元替換

python字元替換

發布時間: 2022-01-31 14:26:10

python 字元串替換

str='aaaaaaaaaa'
ls=list(str)
ls[2]='0'
ls[3]='0'
ls[4]='0'
ls[5]='0'
ls[6]='0'
new_str=''.join(ls)#'aa00000aaa'

❷ Python如何替換list中的字元

利用re庫進行正則表達替換,python3.4中

importre

a=["123","456","789"]
d={"B":"2","E":"5","H":"8"}
b=",".join(a)
print(b)

foriind.keys():
b=re.sub(d[i],i,b)
print(b.split(","))

❸ python中如何替換字元串

replace()實現字元串替換

使用案例

❹ python中文字元串替換字元

a.replace("|","\n")應該改成a=a.replace("|","\n")
因為a.replace()並沒有改變a的值,只是將從a讀取出來的內容改變了

❺ Python字元串替換replace簡單

re.sub(r'[\n\r\t "]',"",string)

❻ 關於Python,怎樣才能把字元串中某一個重復的字元都替換

#-*-coding:utf-8-*-
numbers='0123456789'
a="r1.5ml.in.9it"
file=[]
foriina:
file.append(i)
printfile

foridx,iinenumerate(file):
#先前是因為第二次index('.')的時候,獲取的還是第一個點
ifi=='.'andi!=file[-1]andfile[idx+1]innumbers:
file[idx]='*'
else:
i=i
print(file)

如果解決了您的問題請採納!
如果未解決請繼續追問

❼ python 查找字元串並將其替換

f1=open('J:/wenjian/1/1.txt','r')
for line in f1
你這里是不是少了點什麼,f1隻是文件句柄,需要執行讀操作才能遍歷,
調用readlines()

確實有更好的代碼,那就是使用re.sub,它同時包含了查找和替換兩步的操作,
而不是像你寫的那樣的字元串比較性能那麼低

❽ python中如何對多個字元快速替換

python中快速進行多個字元替換的方法小結

先給出結論:

  • 要替換的字元數量不多時,可以直接鏈式replace()方法進行替換,效率非常高;

  • 如果要替換的字元數量較多,則推薦在 for 循環中調用replace()進行替換。

  • 可行的方法:

    1. 鏈式replace()

    ?

    1
  • string.replace().replace()
  • 1.x 在for循環中調用replace()「在要替換的字元較多時」

    2. 使用string.maketrans

    3. 先 re.compile 然後 re.sub

❾ python字元替換replace

>>> aa='up(1)'
>>> import re
>>> re.sub(r'\(\d\)','',aa)
'up'

❿ python字元串替換問題

簡單點,用正則的話,建議用re.sub

importre
a='!x'
b=re.sub('!','not',a)
print(b)

熱點內容
java編程小游戲 發布:2024-12-27 10:31:19 瀏覽:367
演算法掃 發布:2024-12-27 10:27:33 瀏覽:28
臨時配置文件怎麼也刪除不了 發布:2024-12-27 10:22:08 瀏覽:483
java資料庫表格數據 發布:2024-12-27 10:22:06 瀏覽:728
招商網站源碼 發布:2024-12-27 09:55:22 瀏覽:696
雅閣混動版適合買哪個配置 發布:2024-12-27 09:43:53 瀏覽:470
如何給qq空間加密碼是什麼 發布:2024-12-27 09:43:08 瀏覽:228
c語言動圖 發布:2024-12-27 09:31:05 瀏覽:637
天天酷跑ios腳本下載 發布:2024-12-27 09:27:44 瀏覽:543
如何用花生殼搭建伺服器 發布:2024-12-27 09:09:49 瀏覽:514