与错误混淆:IndexError:列表分配索引超出范围

时间:2019-07-03 01:57:54

标签: python

我是编程和尝试学习python的新手。请帮助我解决以下错误: IndexError:列表分配索引超出范围 不知道为什么我在第13行出现此错误

def missingpanagram(str1):
    temp = [False]*26
    output = []

    for i in range(len(str1)):
        temp[ord(str1[i]) - ord('a')] = True
    for i in range(len(temp)):
        if temp[i] == False:
            output.append(chr(ord(i) + ord('a')))
    print(output)

missingpanagram('the quick brown fox jumps')

0 个答案:

没有答案