标签:print 分隔符 format 使用 oat 次数 指定 输出 指定位置
1.正序:字符串[索引],索引从0开始,从头开始
s="hello" print(s[1])
2.倒序:字符串[索引],索引从-1开始,从尾开始
s="hello" print(s[-4])
字符串[索引头:索引尾:步长],步长默认为1,取头不取尾
1.没有步长的切片
s="helloopie" print(s[1:7])
2.有步长的切片
s="helloopie" print(s[1:7:2])
3.没有指定索引头:索引尾,切全部
s="helloopie" print(s[:])
4.从开头指定位置切全部
s="helloopie" print(s[1:])
5.从开头切到指定位置
s="helloopie" print(s[:2])
6.反转字符串
s="helloopie" print(s[::-1])
str.split(str="", num=string.count(str)),str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等,num -- 分割次数。默认为 -1, 即分隔所有
s="hello op ie" print(s.split())
s="hello op ie" print(s.split(‘ ‘,1))
str.replace(old, new,count),old -- 将被替换的子字符串,new -- 新字符串,用于替换old子字符串,count替换次数
s="hello op ie" print(s.replace(‘ ‘,‘a‘))
s="he llo op ie" print(s.replace(‘ ‘,‘a‘,2))
str.strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列
s="he llo op ie " print(s.strip(‘h‘))
1.% 占位符
%s 字符串
%d integer
%f float
%.2f 指定小数点位数的输出 保留小数点后2位
name="小明" age=18 print(‘%s今年%d岁了‘ %(name,age))
name="小明" age=18 print(‘%s今年%.2f岁了‘ %(name,age))
2.字符串的format方法,{} 占位符,可以使用下标填坑
name="小明" age=18 print(‘{}今年{}岁了‘.format(name,age))
name="小明" age=18 print(‘{1}今年{0}岁了‘.format(name,age))
标签:print 分隔符 format 使用 oat 次数 指定 输出 指定位置
原文地址:https://www.cnblogs.com/heyuling/p/13384778.html