######文字列
######0以上のインデックスを指定 一番左の文字を指定したいときは[0]。>>> w = "abcde"
>>> w[0]
'a'
>>> w[4]
'e'
######マイナスのインデックスを指定
一番右の文字を指定したいときは[-1]。
>>> w = "abcde"
>>> w[-5]
'a'
>>> w[-1]
'e'
######インデックスの範囲外を指定するとエラー
>>> w = "abcde"
>>> w[5]
Traceback (most recent call last):
File "<pyshell#10>", line 1, in <module>
word[5]
IndexError: string index out of range
>>> w[-6]
Traceback (most recent call last):
File "<pyshell#18>", line 1, in <module>
w[-6]
IndexError: string index out of range
######コロンを利用して範囲を指定する
>>> w = "abcde"
>>> w[1:4]
'bcd'
>>> w[0:3]
'abc'
>>> w[:3]
'abc'
>>> w[3:0]
''
>>> w[-1:]
'e'
>>> w[:-1]
'abcd'
>>> word[-4:-2]
'bc'
>>> word[-2:-4]
''