你如何在python中使用replace()表示列表

时间:2017-11-02 00:46:46

标签: python list replace

你好我试图通过请求输入消息来对python进行秘密行为,然后在消息中搜索某些字母并用符号和数字替换它们。我制作了两个列表,但需要知道如何将字符串中的字母替换为列表中的字母。我知道主要的东西,但我以前从未使用过替换品。这是我的代码:

message = input('type your message')
old = ['l', 'o', 's', 'b', 'e', 'g', 'z', 'c', 't', 'a',]
new = ['1', '0', '5', '8', '3', '6', '2', '<', '+', '@',]
new_mess = message.replace(old', new)
print(new_mess)

0 个答案:

没有答案