p=str.maketrans("abcde","12345")
print("hehe.aabbec".translate(p))
输出结果为 h5h5,112253
即上方两个字符串种字符一一对应替换,字符串长度需要相等,否则报错