编程语言
首页 > 编程语言> > Python IndexError:使用列表作为可迭代对象时,列表索引超出范围

Python IndexError:使用列表作为可迭代对象时,列表索引超出范围

作者:互联网

这是代码:

import math as m
primeproduct = 5397346292805549782720214077673687806275517530364350655459511599582614290
primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181]

def pseudoroot(n):
print(n)
for i in n:
    if n[i] > m.sqrt(primeproduct):
        return n[i-1] #greatest divisor below the root


psrprime = pseudoroot(primes)

运行此代码会出现以下错误:

Traceback (most recent call last):
  File "so.py", line 11, in <module>
    print(pseudoroot(primes))
  File "so.py", line 7, in pseudoroot
    if n[i] > m.sqrt(primeproduct):
IndexError: list index out of range

对我来说,这真的没有任何意义,因为for循环中的i是列表中的给定索引,并且不应超出该列表的范围.

解决方法:

您已经将列表索引与列表内容混淆了.因为n中的i表示我将依次采用n的值:2、3、5、7、11 …

从Python的角度来看… n具有42个元素.当我在43岁时开始访问n [i]时,您将崩溃.

尝试这个:

def pseudoroot(n):
    for i, p in enumerate(n):
        if p > m.sqrt(primeproduct):
            return n[i-1] #greatest divisor below the root

请注意,这在您的MCVE中失败了,因为您没有足够的素数来获取sqrt(primeproduct).

标签:python,index-error
来源: https://codeday.me/bug/20191013/1908024.html