gpt4 book ai didi

Python索引错误: list index out of range when using a list as an iterable

转载 作者:行者123 更新时间:2023-11-30 22:03:33 24 4
gpt4 key购买 nike

这是代码:

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 表示 i 将按顺序采用 n 的值:2, 3, 5, 7, 11, .. .

从Python的角度来看...n有42个元素。一旦你在 i 为 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索引错误: list index out of range when using a list as an iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53528484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com