互联网技术 / 互联网资讯 · 2024年3月22日 0

Python3-translate()方法详解:云计算开发的利器

Python translate() 方法根据参数table给出的表(包含 256 个字符)转换字符串的字符,要过滤掉的字符放到 deletechars 参数中。

以下是 translate() 方法语法:

str.translate(table)

bytes.translate(table[, delete])

bytearray.translate(table[, delete])

参数

table — 翻译表,翻译表是通过 Maketrans() 方法转换而来。

deletechars — 字符串中要过滤的字符列表。

返回值

返回翻译后的字符串,若给出了 delete 参数,则将原来的bytes中的属于delete的字符删除,剩下的字符要按照table中给出的映射来进行映射 。

实例

以下实例展示了translate()函数的使用方法:

Python3-translate()方法详解:云计算开发的利器

以上实例输出结果如下:

Python3-translate()方法详解:云计算开发的利器

以下实例演示如何过滤掉的字符 o:

Python3-translate()方法详解:云计算开发的利器

输出结果为:

Python3-translate()方法详解:云计算开发的利器