pandas.Series.str.translate # 系列.str。翻译(表)[来源] # 通过给定的映射表映射字符串中的所有字符。 相当于标准str.translate()。 参数: 表字典表是 Unicode 序数到 Unicode 序数、字符串或 None 的映射。未映射的字符保持不变。映射到 None 的字符将被删除。str.maketrans()是用于制作转换表的辅助函数。 返回: 系列或索引 例子 >>> ser = pd.Series(["El niño", "Françoise"]) >>> mytable = str.maketrans({'ñ': 'n', 'ç': 'c'}) >>> ser.str.translate(mytable) 0 El nino 1 Francoise dtype: object