Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以解释一下是如何[::-1]工作的吗?我在某处读到它颠倒了列表,我试过了,它确实有效,但我不知道如何。2个冒号是什么意思?我在 python 文档中找不到类似的东西。
[::-1]
另外,有人知道这个或底层算法的效率吗?
这是切片符号:
[start:stop:step]
start
stop
step
-1
1
2