This question already has answers here:
Understanding slice notation
                                
                                    (32个答案)
                                
                        
                                5年前关闭。
            
                    
我一直看到:Python中的s[::-1],我不知道它是做什么的。抱歉,如果这是一个问题,但是我是python和一般编程的新手。

最佳答案

它使用切片反转sequence

>>> s = 'hello'
>>> s[::-1]
'olleh'


切片符号[]是一种获取某些可迭代容器的子集的方法。它具有语法

[start : stop : step]


有关更多详细信息,请参见this post

10-02 17:59