索引运算符【】
选择字符串的子序列
语法【start:finish】
start:子序列开始位置的索引值
finish:子序列结束位置的下一个字符的索引值
如果不提供start或者finish,默认start为第一个字符,finish为最后一个字符。
例如
>>>my_str='hello world' >>>my_str[6:10] 'worl' >>>my_str[6:] 'world' >>>my_str[:6] 'hello' >>>
接收三个参数
start:finish:countBy
默认countBy为1
>>>my_str='hello world' >>>my_str[0:11:2] 'hlowrd'
获得逆字符串
>>>my_str='spam' >>>reverse_str=my_str[::-1] >>>print(reverse_str) maps