我有一个数字列表,指的是它们在一个字符串中的位置,例如
x=[1,3,5,9,2]
alphabet = abcdefghijklmnopqrstuvwxyz #the string
print alphabet[:x]
我希望这回到'bdfjc'(python从0开始)
任何想法都将受到高度赞赏
答案 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