今天给大家介绍一下如何分析python字符串相关str。文章的内容小编觉得不错,现在给大家分享一下,觉得有需要的朋友可以了解一下,希望对大家有所帮助,下面跟着小编的思路一起来阅读吧。
1:访str单个字符
#for循环迭代name = 'Chengwei'for ch in name: print(ch, end=' ')#C h e n g w e i#索引print(name[1])#hprint(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')#YESif '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']
以上就是如何分析python字符串相关str的全部内容了,更多与如何分析python字符串相关str相关的内容可以搜索编程网之前的文章或者浏览下面的文章进行学习哈!相信小编会给大家增添更多知识,希望大家能够支持一下编程网!