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