索引
字串-字元序列
每個字元都有一個稱為索引
的位置
索引值從0開始
每個單字之間的空格也可以計算器
索引有正索引和負索引
負索引-1從字元結尾開始
例如:
word='訊息'
M e s s a g e
正索引 0 1 2 3 4 5 6
負索引 -7 -6 -5 -4 -3 -2 -1
字[3]
s
len(字)
6
切片
字串[起始索引:結束值之前]
string[startingindex:before value to end:direction] -->這會反轉字串的方向
string[] - 這會印出整個值
例如:
H e l l o m o b i l e
正索引 0 1 2 3 4 5 6 7 8 9 10
負索引 -11 -10 -9 -8 -7 -6 -5 -4 -3 -2 -1
msg='HelloMobile'
print(msg[2:5]) #正索引
print(msg[-5:-2]) #負索引
print(msg[::-1])反轉字串
print(msg[-2:-5:-1]) #reverse la print aagum
列印(訊息[5:])
列印(訊息[:-5])
o/p
呵呵
腰帶
elibomolleH
庫
手機
你好M
以上是Python索引教程4的詳細內容。更多資訊請關注PHP中文網其他相關文章!