将列表压缩为字符串:['z','y','x'...] -> 'zyx...' ? Python (2.7.1)
如果我有 list='abcdedcba'
我想要: a=z、b=y、c=x、d=w、e=v 所以它会翻译成:
translate='zyxwvwxya'
我该怎么做? 如果我构造一个字典
>>> d=dict(zip(('a','b','c','d','e'),('z','y','x','w','v')))
并输入
>>> example= d[x] for x in list
>>> print translate
['z', 'y', 'x', 'w', 'v', 'w', 'x', 'y', 'z']
如何将其恢复为
translate='zyxwvwxyz'
形式?
If I have
list='abcdedcba'
and i want:
a=z, b=y, c=x, d=w, e=v
so it would translate to:
translate='zyxwvwxya'
How would I do this?
If I construct a dictionary
>>> d=dict(zip(('a','b','c','d','e'),('z','y','x','w','v')))
and type
>>> example= d[x] for x in list
>>> print translate
['z', 'y', 'x', 'w', 'v', 'w', 'x', 'y', 'z']
How do I get it back into the form
translate='zyxwvwxyz'
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
对于单字母替换,请使用 maketrans 和 从 string 模块翻译。它们的操作类似于 unix tr 命令。使用空分隔符连接是最后一步的正确答案,但对于此确切任务来说不是必需的。
For monoalphabetic substitution, use maketrans and translate from the string module. They operate like the unix tr command. Joining with an empty separator is the correct answer for that last step, but not necessary for this exact task.
我不确定这是你想要的吗?
I'm not sure this is what you want?
使用 maketrans 和 translate 的示例:
假设您要替换 ASCII 字母表中的所有字母:
an example of using maketrans and translate:
Assuming you want to substitute all letters in the ASCII alphabet: