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

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

我正在调用此实例两次并将返回的值收集到列表中.然后我尝试使用.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的opencv还有face_r...
说到Pooling,相信学习过CNN的朋友们都不会感到陌生。Poolin...
记得大一学Python的时候,有一个题目是判断一个数是否是复数...
文章目录 3 直方图Histogramplot1. 基本直方图的绘制 Basic ...
文章目录 5 小提琴图Violinplot1. 基础小提琴图绘制 Basic v...
文章目录 4 核密度图Densityplot1. 基础核密度图绘制 Basic ...