详解python字符串相关str
程序员文章站
2022-06-16 12:36:19
目录1:访str单个字符2: 字符串连接3:str切片4:使用in 和not in 测试字符串5:str方法6:重复操作符7:分割字符串总结1:访str单个字符#for循环迭代name = 'chen...
1:访str单个字符
#for循环迭代 name = 'chengwei' for ch in name: print(ch, end=' ') #c h e n g w e i #索引 print(name[1]) #h print(name[-1]) #最后一个为 -1 #i #len()函数返回str字符串数量 print(len(name)) #8
2: 字符串连接
message = 'hello' + 'world' print(message) #helloworld
3:str切片
message = 'helloworld' print(message[2:4]) #ll
4:使用in 和not in 测试字符串
message = 'helloworld' if 'hello' in message: print('yes') #yes if 'aaa' not in message: print('yes') #yes
5:str方法
字符串测试方法
isalnum() | 如果str只包含字母或数字,并且长度至少为一个字符,则返回true。否则返回false |
isalpha() | 如果str只包含字母并且长度至少为一个字符,则返回true。否则返回false |
isdigit() | 如果str只包含数字如果str只包含字母并且长度至少为一个字符,则返回true。否则返回false |
islower() | 如果str中的所有字母都是小写如果str只包含数字如果str只包含字母并且长度至少为一个字符,则返回true。否则返回false |
isspace() | 如果str只包含空白字符,并且长度至少为一个字符,则返回true。否则返回false(空格,\n,\t) |
isupper() | 如果str中的所有字母都是大写如果str只包含数字如果str只包含字母并且长度至少为一个字符,则返回true。否则返回false |
字符串修改方法
lower() | 返回将所有字母转换为小写的str副本。不是字母的不变 |
lstrip() | 返回删除所有前导空白字符的str副本。 |
lstrip(str_item) | str_item是字符串。返回删除所有前导str_item的字符串副本 |
rstrip() | 返回所有尾部空白字符串的字符串副本。 |
rstrip(str_item) | 返回删除所有尾部str_item的字符串副本 |
strip() | |
strip(str_item) | 删除所有前导和尾部str_item的字符串副本 |
upper() |
lower() | 返回将所有字母转换为小写的str副本。不是字母的不变 |
lstrip() | 返回删除所有前导空白字符的str副本。 |
lstrip(str_item) | str_item是字符串。返回删除所有前导str_item的字符串副本 |
rstrip() | 返回所有尾部空白字符串的字符串副本。 |
rstrip(str_item) | 返回删除所有尾部str_item的字符串副本 |
strip() | |
strip(str_item) | 删除所有前导和尾部str_item的字符串副本 |
upper() |
搜索和替换的方法
endswith(substring) | 返回true或false |
find(substring) | 返回找到substring的最小索引位置。没有找到返回 -1 |
replace(old, new) | 返回将所有的old替换为new的字符串副本 |
starstwith(substring) | 返回true或false |
6:重复操作符
print('hello' * 2) #hellohello
7:分割字符串
message = 'hello world chengwei' message_list = message.split() print(message_list) #['hello', 'world', 'chengwei'] message = 'hello,world,chengwei' message_list = message.split(',') print(message_list) #['hello', 'world', 'chengwei']
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!
上一篇: Mysql数据库的主从同步配置
推荐阅读
-
python开发之字符串string操作方法实例详解
-
最常见和最有用的字符串相关的方法详解
-
Python基础一: 计算机基础,Python相关介绍,变量,常量,注释,基础数据类型(int,str,bool),用户交互input,流程控制语句if
-
详解Python中__str__和__repr__方法的区别
-
python3 json数据格式的转换(dumps/loads的使用、dict to str/str to dict、json字符串/字典的相互转换)
-
详细整理python 字符串(str)与列表(list)以及数组(array)之间的转换方法
-
详解Python 字符串相似性的几种度量方法
-
python leetcode 字符串相乘实例详解
-
对json字符串与python字符串的不同之处详解
-
MacOS配置Anaconda3(Miniconda3)下Python3.6、Python3.7和Python2.7环境和基础机器学习、神经网络相关包详解(版本号对应)