1--字符串的定义
。--字符串就是一串字符,是编程语言中表示文本的数据类型
。--在Python中可以使用一堆双引号""或者一对单引号''定义一个字符串
--虽然可以使用\"或者\'做字符串的转义,但是在实际开发中:
-如果字符串内部需要使用",可以使用'定义字符串
-如果字符串内部需要使用',可以使用"定义字符串
。--也可以使用索引获取一个字符串中,指定位置的字符,索引计数从0开始
。--也可以使用for循环遍历字符串中的每一个字符
格式:
string="hello python"
for c in string:
print(c)
练习:
str1="3464"
str1="i wish 'you' are here"
print(str1)---->3464
print(str1[2])---->6
for car in str1:
print(char)
2--字符串的常用操作函数
。--在ipython3中定义一个字符串,例如:hello_str=""
。--输入hello_str.按下tab键,会提示字符串能够使用的方法,其中
hello_str="hello hello"
#统计字符串的长度
print(len(hello_str))
#统计某一个小(子)字符串出现的次数
print(hello_str.count("llo"))---->2
print(hello_str.count("123"))---->0
#某一个子字符串出现的位置--如果使用index方法传递的子字符串不存在,程序会报错
print(hello_str.index("llo"))---->2
print(hello_str.index("123"))---->报错ValueError:substring not found--值错误:子字符串没有发现
--判断类型
space_str=" \t\n\r"
#判断字符串中是否含有空白字符(\也算是空白字符)
#判断字符串中是否只包含数字
print(space_str.isspace())---->True
num_str="12"
#1>都不能判断小数,否则会在控制台输出False
print(num_str)
#判断字符串中是否都是数字,是,就返回Ture,使用频率较高
print(num_str.isdecimal())
#判断字符串中是否都是数字、Unicode字符串(比如\u00b2)
print(num_str.isdigit())
#判断字符串中是否都是数字、Unicode字符串(比如\u00b2)、中文数字,是,返回Ture
print(num_str.isnumberic())
--替换和查找
hello_str="hello world"
#判断是否以指定字符串开始(分字母大小写)
print(hello_str.startswith("hello"))---->Ture
print(hello_str.startswith("Hello"))---->False
#判断是否以指定字符串结束
print(hello_str.endswith("hello"))----Ture
#查找指定字符串
#某一个子字符串出现的位置--如果使用index方法传递的子字符串不存在,程序会报错
print(hello_str.find("llo"))---->2
print(hello_str.index("llo"))---->2
print(hello_str.find("123"))---->-1
#两者的区别
#index如果指定的字符串不存在,会报错
#find如果指定的字符串不存在,会返回-1
#替换字符串--replace方法执行完之后,会返回一个新的字符串
#注意:不会修改原有字符串的内容
print(hello_str.replace("world","python"))---->hello python
print(hello_str)---->hello world
--文本对齐
string="24543"
#原字符串靠左边对齐
string.ljust(距离左边框宽度,空格(默认为英文空格,可以设置为中文空格))
#用法
print("|%s|" %string.ljust(10," "))
#原字符串靠右边对齐
string.rjust(宽度,' ') #为中文空格
#原字符串居中对齐
string.center(宽度)
#默认为英文空格
--去除空白字符-strip(去掉)
string="24 5 43"
#截掉string左边(开始)的空白字符
string.lstrip()
#用法
print("|%s|" %string.lstrip())
#截掉string末尾(开始)的空白字符
string.rstrip()
#截掉string左右两边的空白字符
string.strip()
--拆分和连接
补充:一个字符串内部,可以包含多个子字符串
例如:aa_str="12\t23 2454\n8923\r"
string="24 5 43"
#以str为分隔符拆分string,如果num有指定值,则仅分隔num+1个子字符串,str若不指定,则str默认包含\t,\r,\n和空格
new_str=string.split(str="",num)
#以seq作为分隔符,将string中所有的元素(的字符串表示)合并为一个新的字符串
new_str=seq.join(string)
例:new_str=" ".join(string)
3--字符串的切片
。--切片方法适用于字符串、列表、元组
--切片使用索引值来限定范围,从一个大的字符串中,切出小的字符串
--列表和元组都是有序的集合,都能够通过索引值获取到对应的数据
--字典是一个无序的集合,是使用键值对保存数据
格式:
字符串[开始索引:结束索引:步长]
**注意:
--指定的区间属于 左闭右开 型,[开始索引,结束索引) => 开始索引 >= 范围 < 结束索引
-从起始位开始,到结束位前一位结束(不包含结束位本身)
--从头开始,开始索引数字可以省略,冒号不能省略
--到末尾结束,结束索引数字可以省略,冒号不能省略
--步长默认为1,如果连续切片,数字和冒号都可以省略
**补充:字符串索引
正序从零开始依次递增
逆序从-1,-2依次递减
num_str="0123456789"
#截取从2-5位置的字符串
nm_str[2:6]
#截取从2-末尾的字符串
num_str[2:]
#截取从开始-5的位置的字符串
num_str[:6]
#截取完整的字符串
num_str[:]
#从开始位置,每个一个字符截取字符串
num_str[::2]
#从索引1开始,每隔一个取一个
num_str[1::2]
#截取从2-(末尾-1)的字符串
num_str[2:-1]
#截取字符串末尾两个字符
num_str[-2:]
#字符串的逆序(面试题)
num_str[-1::-1]---->'9876543210'
num_str[::-1]---->'9876543210'
特殊:
num_str[-1]---->'9'
num_str[0::-1]---->'0'