Python3 字符串 Python3 字符串


描述

translate() 方法根據(jù)參數(shù)table給出的表(包含 256 個字符)轉(zhuǎn)換字符串的字符, 要過濾掉的字符放到 deletechars 參數(shù)中。

語法

translate()方法語法:

str.translate(table[, deletechars]);

參數(shù)

  • table -- 翻譯表,翻譯表是通過maketrans方法轉(zhuǎn)換而來。
  • deletechars -- 字符串中要過濾的字符列表。

返回值

返回翻譯后的字符串。

實例

以下實例展示了 translate()函數(shù)的使用方法:

#!/usr/bin/python3

intab = "aeiou"
outtab = "12345"
trantab = str.maketrans(intab, outtab)

str = "this is string example....wow!!!"
print (str.translate(trantab))

以上實例輸出結(jié)果如下:

th3s 3s str3ng 2x1mpl2....w4w!!!

Python3 字符串 Python3 字符串