W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Python translate() 方法根據(jù)參數(shù)table給出的表(包含 256 個(gè)字符)轉(zhuǎn)換字符串的字符, 要過(guò)濾掉的字符放到 del 參數(shù)中。
translate()方法語(yǔ)法:
str.translate(table[, deletechars]);
返回翻譯后的字符串。
以下實(shí)例展示了 translate()函數(shù)的使用方法:
#!/usr/bin/python
#coding=utf-8
from string import maketrans # 引用 maketrans 函數(shù)。
intab = "aeiou"
outtab = "12345"
trantab = maketrans(intab, outtab)
str = "this is string example....wow!!!";
print str.translate(trantab);
以上實(shí)例輸出結(jié)果如下:
th3s 3s str3ng 2x1mpl2....w4w!!!
以上實(shí)例去除字符串中的 'x' 和 'm' 字符:
#!/usr/bin/python
from string import maketrans # Required to call maketrans function.
intab = "aeiou"
outtab = "12345"
trantab = maketrans(intab, outtab)
str = "this is string example....wow!!!";
print str.translate(trantab, 'xm');
以上實(shí)例輸出結(jié)果:
th3s 3s str3ng 21pl2....w4w!!!
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: