如默 发表于 2022-7-15 16:09:16

列表报错TypeError: object of type 'NoneType' has no len()

如题,源码如下:
import random as ra

qusetionID = []
for i in range(1, 101):
    qusetionID.append(i)

temp = input("Plear press enter to choose the question")

while qusetionID != "":
    chickChoice = ra.choice(qusetionID)
    print("You choose NO." + str(chickChoice) + " question to answer")
    temp = input("Please choose again")
    qusetionID = qusetionID.remove(chickChoice)

print("The question is empty!")

这个代码意思是,有一100道题,按一下回车就是随机从这100个题目里面抽一个,然后,再按一下就再抽一个,已经抽过的题目会从这100个里面删除,直到这个列表为空,就结束。
目前报错是len, 不知道为什么

附:最早是设置了一个status = len(questionID),然后判断while status != 0,结果还是报同样的错误
求助

qiuyouzhi 发表于 2022-7-15 16:12:05

列表的方法大部分是没有返回值的,都是直接对列表进行操作
改成这样:
import random as ra

qusetionID = []
for i in range(1, 101):
    qusetionID.append(i)

temp = input("Plear press enter to choose the question")

while qusetionID != "":
    chickChoice = ra.choice(qusetionID)
    print("You choose NO." + str(chickChoice) + " question to answer")
    temp = input("Please choose again")
    qusetionID.remove(chickChoice)

print("The question is empty!")

如默 发表于 2022-7-15 16:19:19

本帖最后由 如默 于 2022-7-15 16:24 编辑

qiuyouzhi 发表于 2022-7-15 16:12
列表的方法大部分是没有返回值的,都是直接对列表进行操作
改成这样:

这个代码一直执行的话,最后会提示:
Traceback (most recent call last):
File "e:\Python\test.py", line 10, in <module>
    chickChoice = ra.choice(qusetionID)
File "C:\Python310\lib\random.py", line 378, in choice
    return seq
IndexError: list index out of range

执行100次之后,并不会直接输出最后的那个print,这是怎么回事

临时号 发表于 2022-7-15 16:34:08

如默 发表于 2022-7-15 16:19
这个代码一直执行的话,最后会提示:




import random as ra

qusetionID = []
for i in range(1, 101):
    qusetionID.append(i)

temp = input("Plear press enter to choose the question")

while qusetionID != []:
    chickChoice = ra.choice(qusetionID)
    print("You choose NO." + str(chickChoice) + " question to answer")
    temp = input("Please choose again")
    qusetionID.remove(chickChoice)

print("The question is empty!")

qiuyouzhi 发表于 2022-7-15 17:01:56

如默 发表于 2022-7-15 16:19
这个代码一直执行的话,最后会提示:




加个判断列表是否为空

如默 发表于 2022-7-15 17:18:15

本帖最后由 如默 于 2022-7-15 17:20 编辑

qiuyouzhi 发表于 2022-7-15 17:01
加个判断列表是否为空

把while questionID != ""改成while questionID != []就好了
页: [1]
查看完整版本: 列表报错TypeError: object of type 'NoneType' has no len()