maketrans和translate是密切相关的两个方法,先看translate的说明 S.translate(table [,deletechars]) -> string Return a copy of the string S, where all characters occurring in the optional argument del
通过translate()函数进行转换,生成一个合适转换列表。这个函数有两个参数,第一个参数的每个字符将被映射到第二个参数的对应位置。两个参数必须有相同的长度。 import string leet = string.maketrans('abegiloprstz','463611092572') s = 'The quick brown fox jumped over the laz
解决:ValueError: the first two maketrans arguments must have equal length 文章目录 解决:ValueError: the first two maketrans arguments must have equal length背景报错问题报错翻译报错位置代码报错原因解决方法今天的分享就到此结束了