###字符串的访问####
str3 ="abcdefghijklmnopq"
##根据索引位访问
print(str3[3])
#字符串的截取[起始位:结束位]--最后一位值:结束位- 1
print(str3[1:6])
#字符串步长截取[起始位:结束位:步长]--最后一位值:结束位- 1
print(str3[1:13:3])
#字符串的反向访问
print(str3[-3])
#字符串的反转
print(str3[::-1])
#查找字符串的索引位 .find() -- 不存在返回-1.
print(str3.find('c'))
#字符串的分割 .split() --- 指定的字符不存在,在列表里面原样输出
print(str3.split('e'))
#字符的替换 .replace('需要替换的字符',)
print(str3.replace('e','python'))
#字符串前后切割 .strip('指定切割的字符') -- 指定切割的字符,默认是空格
print(str3.strip())
print(str3.strip('abc'))
#判断一个字符是否在另一个字符串的where a in(xx,xxx)
print('abc' in str3)
#####字符串的复制* 字符串的换行\n
print('%%%%%%\n'*10)