任何人都可以解释一下:s[81:67:-1]
当s
为“this is me asking a question on stackoverflow.com and hoping to get an answer that will help me further
”
答案 0 :(得分:2)
正在反向访问字符串。从第81个角色到第67个角色。步长值为-1。如果你指定一个正值,你什么也得不到。
print s[81:67:-1]
print s[81:67:1]
<强>输出强>
taht rewsna na
您可以阅读更多相关信息here。它被称为切片符号。
答案 1 :(得分:1)
您正在访问位置81到67的元素,但顺序相反(:-1实现此目的)
因此,您正在迭代从第67位到第81位的元素。