當前位置:首頁 » 編程語言 » python去除字母

python去除字母

發布時間: 2023-03-03 08:50:48

1. python字元串如何去掉英文字母以外的字元

#內置函數ord可以返回字元對應的編碼
#鍵盤上能找到的字元,對應的編碼為32-126
#列表推導式過濾掉其他字元,join重新拼接字元串
deftest(wenben):return''.join([xforxinwenbenif32<=ord(x)<=126])
print(test('Li漢字與中文標點、,。都不會顯示feisshort,youne和諧edPython.'))

2. python字元串如何去掉英文字母以外的字元

可以利用正則表達式來去除

既然說到了字元串的操作,那麼就目前而言是沒有別的方法會比正則表達式更加方便的:

正則表達式中代表非字母的寫法如下:

[^a-zA-Z]

#code:

3. python怎麼不用strip()就去掉首末的字母啊

#-*-coding:utf-8-*-

defstrip(strs,fits):
strs=list(strs)
foridxinrange(0,len(strs),1):
ifstrs[idx]infits:
strs[idx]=None
continue
break
foridxinrange(len(strs)-1,-1,-1):
ifstrs[idx]infits:
strs[idx]=None
continue
break
return''.join([cforcinstrsifcisnotNone])

printstrip("abcdeddaab","ab")

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

熱點內容
javaj2ee 發布:2024-11-07 12:26:17 瀏覽:787
hmcl伺服器地址怎麼寫 發布:2024-11-07 12:26:10 瀏覽:542
北京一區伺服器ip地址 發布:2024-11-07 12:12:54 瀏覽:316
dll加密反編譯 發布:2024-11-07 12:10:40 瀏覽:92
lol如何設置伺服器忙 發布:2024-11-07 12:04:04 瀏覽:547
發票價演算法 發布:2024-11-07 11:59:02 瀏覽:603
使命召喚如何退款安卓微信 發布:2024-11-07 11:32:38 瀏覽:822
優酷上傳音樂 發布:2024-11-07 11:28:14 瀏覽:733
安卓原生系統開發者模式在哪裡 發布:2024-11-07 11:22:47 瀏覽:409
pythongdal安裝 發布:2024-11-07 11:07:29 瀏覽:289