微信扫一扫
# 去掉abc s2 = 'abc12303023xyz' table = str.maketrans("", "", "abc") print(s2.translate(table))
相关推荐