标签:图片 cti class nbsp ima pre dict orm pytho
Python3 中有六个标准的数据类型:
索引对应元素的位置
示例:
>>> string = ‘hello world!‘ >>> print(string[1]) # 正序从0开始 到最后 第一个字符的索引值为 0 第二个为 1 e >>> string = ‘hello world!‘ >>> string[0] ‘h‘ >>> string[-1] # 逆序索引 最后一个索引值为 -1 从后往前 依次为 -1、-2、-3 … ‘!’ >>> string[0:6] #切片 string[起始索引:终止索引] 得到的是新的字符串 ‘hello ‘ >>> string[0:] #不写终止索引,即为取到最后 ‘hello world!‘ >>> string[4:] ‘o world!‘ >>> string[:] # 都不写 就是全切片 从[:-1] ‘hello world!‘ >>> string[::-1] # 终止索引后的参数为 步长 string[起始索引:终止索引:步长] 全切片 然后逆序 步长为负 从从后往前 每次取1个 ‘!dlrow olleh‘ >>> string[::2] # 步长为2 从前往后 隔一个取一个 ‘hlowrd‘
注意:切片之后的结果是对原字符串的部分绝对拷贝(深拷贝),即是两个完全独立的对象,而不是浅拷贝或者对原对象的部分引用。
string = ‘阿胶不符合双方的了’
标签:图片 cti class nbsp ima pre dict orm pytho
原文地址:https://www.cnblogs.com/monkey-code/p/11156509.html