本文介绍了list.reverse()不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

老实说,我只是不明白为什么它返回None而不是返回列表:

I honestly just don't understand why this is returning None rather than a reversed list:

>>> l = range(10)
>>> print l
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> print l.reverse()
None

为什么会这样?根据文档,我没有做错任何事情.

Why is this happening? According to the docs, I am doing nothing wrong.

推荐答案

reverse修改该列表并返回None.如果你这样做

reverse modifies the list in place and returns None. If you do

l.reverse()
print l

您将看到您的列表已被修改.

you will see your list has been modified.

这篇关于list.reverse()不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 09:32