gpt4 book ai didi

python - 将列表压缩成字符串 : ['z' ,'y' ,'x' . ..] -> 'zyx...' ? python (2.7.1)

转载 作者:太空宇宙 更新时间:2023-11-03 12:13:57 24 4
gpt4 key购买 nike

如果我有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']

如何将其恢复到表单中

翻译='zyxwvwxyz'

?

最佳答案

the_list = ['z', 'y', 'x', 'w', 'v', 'w', 'x', 'y', 'z']
print "".join(the_list)

关于python - 将列表压缩成字符串 : ['z' ,'y' ,'x' . ..] -> 'zyx...' ? python (2.7.1),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5725843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com