如何从包含该位置的列表中找到字母的位置?

时间:2015-09-13 12:53:38

标签: python list

我有一个数字列表,指的是它们在一个字符串中的位置,例如

x=[1,3,5,9,2]
alphabet = abcdefghijklmnopqrstuvwxyz #the string
print alphabet[:x]

我希望这回到'bdfjc'(python从0开始)

任何想法都将受到高度赞赏

1 个答案:

答案 0 :(得分:0)

x=[1,3,5,9,2]
alphabet = "abcdefghijklmnopqrstuvwxyz" #the string
r = "" # The string to print out at the end
for i in x:
    r += alphabet[i]
print r