解决:ValueError: the first two maketrans arguments must have equal length

解决:ValueError: the first two maketrans arguments must have equal length



文章目录

  • 解决:ValueError: the first two maketrans arguments must have equal length
    • 背景
    • 报错问题
    • 报错翻译
    • 报错位置代码
    • 报错原因
    • 解决方法
      • 今天的分享就到此结束了



背景

在使用之前的代码时,报错:
Traceback (most recent call last):
File , line 1, in
tb=str.maketrans (‘abc’,‘12’)
ValueError: the first two maketrans arguments must have equal length



报错问题


  Traceback (most recent call last): 
    File , line 1, in  
      tb=str.maketrans ('abc','12') 
  ValueError: the first two maketrans arguments must have equal length



报错翻译

主要报错信息内容翻译如下所示:


  Traceback (most recent call last): 
    File , line 1, in  
      tb=str.maketrans ('abc','12') 
  ValueError: the first two maketrans arguments must have equal length

翻译:


回溯(最近一次调用最后一次): 
  tb=str.maketrans ('abc','12') 
    中的文件 “”,第 1 行 
ValueError: 前两个 maketrans 参数的长度必须相等



报错位置代码


...
   tb=str.maketrans ('abc','12') 
...



报错原因

经过查阅资料,发现是使用translate()方法,将字符串里面的字符改掉时,映射两边的长度必须一致,不然就会报错。

maketrans()函数用于构造过渡表,即指定需要在整个字符串中替换的字符列表或需要从字符串中删除的字符的列表。这是一种静态方法,可创建字符到其转换/替换的一对一映射。此方法创建每个字符的Unicode表示形式以进行翻译。

语法:maketrans(str1,str2,str3)

参数:

str1:指定需要替换的字符列表。
str2:指定需要替换字符的字符列表。
str3:指定需要删除的字符列表。

返回:返回转换表,该表指定translate()可以使用的转换

小伙伴们按下面的解决方法即可解决!!!



解决方法

要解决这个错误,需要保持映射两边的长度一致。

正确的代码是:

tb=str.maketrans ('abc','123') 


今天的分享就到此结束了

欢迎点赞评论关注三连

在这里插入图片描述

你可能感兴趣的:(Python,python)