int对象在python中不是可逆错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int对象在python中不是可逆错误相关的知识,希望对你有一定的参考价值。
我想要反转由整数组成的列表
我的代码:
list = [1, 2, 3, 4, 5]
print(reversed(list[0]))
但它一直在说int object is not reversible
。我想要它打印5
答案
您要求python反转数组中的单个int,而不是数组本身。
>>> foo = [1, 2, 3, 4, 5]
>>> foo.reverse()
>>> foo
[5, 4, 3, 2, 1]
>>> print(foo[0])
5
另一答案
您尝试执行的操作是反转列表的第一个元素。所以反过来(1)。这是不可能的。
以上是关于int对象在python中不是可逆错误的主要内容,如果未能解决你的问题,请参考以下文章
在我尝试使用 python 解决的迷宫问题中,显示类型错误 int 对象在老鼠中不可下标