欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

详解python字符串相关str

时间:2022-08-24 09:40:23|栏目:Python代码|点击:

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']

总结

上一篇:详解Python查找谁删了你的微信

栏    目:Python代码

下一篇:基于Python实现射击小游戏的制作

本文标题:详解python字符串相关str

本文地址:http://www.codeinn.net/misctech/211710.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有