使用下面的方法对一个字符串一次性的进行不同替换
s = 'one two one two one' print(s.translate(str.maketrans({'o': 'O', 't': 'T'})))