python中translate什么意思_Python——maketrans和translate方法到底是什么玩意儿

最近在看Python Cookbook,发现无法理解字符串处理的两个方法maketrans, translate,在Python解释器里面查看说明文档也语焉不详,莫名其妙,结合网上看到的一些说明,这里以比较容易理解的方式来解释一下这两个方法,算是对官方文档的一些注解。

maketrans和translate是密切相关的两个方法,先看translate的说明

S.translate(table [,deletechars]) -> string

Return a copy of the string S, where all characters occurring

in the optional argument deletechars are removed, and the

remaining characters have been mapped through the given

translation table, which must be a string of length 256.

简单来说就是对字符串S移除deletechars包含的字符,然后保留下来的字符按照table里面的字符映射关系映射(比如a变成A,后面会解释到)。那个莫名其妙的"which must be a string of length 256"就不用深究了,反正table就是由string.maketrans方法生成的,对于string.maketrans方法,这里有个更清晰的解释,如下:

string.maketrans(intab, outtab) --> This method returns a translation table that maps each character in the intab string into the character at the same position in the outtab string. Then this table is passed to the translate() function. Note that both intab and outtab must have the same length.

下面是一些实例说明:

import string

s = 'abcdefg-1234567'

table = string.maketrans('', '') #没有映射,实际上就是按原始字符保留,看下面用到translate中时的效果

s.translate(table) # 输出abcdefg-1234567

s.translate(table, 'abc123') #输出defg-4567 可以看到删除了字符abc123

#下面再看有字符映射时的效果

table = string.maketrans('abc', 'ABC') #用于translate中时的效果如下

s.translate(table) #输出ABCdefg-1234567 就是将abc映射为大写的ABC,前提是abc如果被保留下来了

s.translate(table, 'ab123') #输出Cdefg-4567 先把s中的ab123去除了,然后在保留下来的字符中应用table中指定的字符映射关系映射:c -> C

解释完毕,现在知道为什么maketrans(intab, outtab)中两个字符串参数长度必须一样了,因为是字符一对一的映射。

神奇的Python中总是有很多奇怪的存在

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值