Python IndexError: list index out of range when using a list as an iterable
Python IndexError: list index out of range when using a list as an iterable
代码如下:
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 是列表中的给定索引,不应超出该列表的范围。
for i in n
遍历 值 而不是索引。如果你想要索引,有几种方法可以做到,一种是 for i, v in enumerate(n)
,然后你可以使用 v
而不是 n[i]
。
您混淆了列表 index 和列表 contents。 for i in 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)。
Which really doesn't make any sense to me as the i in the for loop is
a given index in the list and shouldn't exceed the bounds of that
list.
不完全是。 i
是您列表中的 项 , 不是 索引。
for i in n
为您提供 n
中的 项 。不是索引。所以这样做 n[i]
有点荒谬(你正在使用 items 作为索引)。如果你想要一个 c 风格的索引,一个快速的解决方法是使用 for i in range(len(n))
。
更多 pythonic 将是:
for before_prime, current_prime in zip(n, n[1:]):
if current_prime > m.sqrt(primeprod):
return before_prime #greatest divisor below the root
代码如下:
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 是列表中的给定索引,不应超出该列表的范围。
for i in n
遍历 值 而不是索引。如果你想要索引,有几种方法可以做到,一种是 for i, v in enumerate(n)
,然后你可以使用 v
而不是 n[i]
。
您混淆了列表 index 和列表 contents。 for i in 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)。
Which really doesn't make any sense to me as the i in the for loop is a given index in the list and shouldn't exceed the bounds of that list.
不完全是。 i
是您列表中的 项 , 不是 索引。
for i in n
为您提供 n
中的 项 。不是索引。所以这样做 n[i]
有点荒谬(你正在使用 items 作为索引)。如果你想要一个 c 风格的索引,一个快速的解决方法是使用 for i in range(len(n))
。
更多 pythonic 将是:
for before_prime, current_prime in zip(n, n[1:]):
if current_prime > m.sqrt(primeprod):
return before_prime #greatest divisor below the root