Python基本字符串数组

时间:2013-10-09 13:26:09

标签: python

任何人都可以解释一下: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

2 个答案:

答案 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位的元素。