gpt4 book ai didi

python - 为什么从类实例返回的字符串保持 NoneType 类型,即使 IDLE 说它是一个字符串?

转载 作者:太空狗 更新时间:2023-10-30 01:23:05 26 4
gpt4 key购买 nike

我正在使用一个返回字符串的类实例。

我两次调用这个实例并将返回值收集到一个列表中。然后我尝试使用 .sort() 对这两个字符串进行排序。但是,当我这样做时,它会抛出一个错误,指出类型是(Nonetype - 将其视为对象)。

我确实检查了类型(列表的元素),它返回类型“string”。我不知道发生了什么。基本上在空闲状态下,它说我在列表中有字符串。但是在运行时它会抛出一个错误,指出 NoneType(这些字符串的列表)不可迭代。

这是一个例子:

list_of_strings = [class_method(args), class_method(another_args)] ## this instance returns string

print type(list_of_strings[0]) #prints type 'str'

错误:

list_sorted = list(list_of_strings.sort())
TypeError: 'NoneType' object is not iterable

非常感谢!

乔治

最佳答案

来自 python documentation :

7. The sort() and reverse() methods modify the list in place for economy of space when sorting or reversing a large list. To remind you that they operate by side effect, they don’t return the sorted or reversed list.

使用sorted():

list_sorted = list(sorted(list_of_strings))

关于python - 为什么从类实例返回的字符串保持 NoneType 类型,即使 IDLE 说它是一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16877338/

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