前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python字符串的使用方法_python输入字符串str

python字符串的使用方法_python输入字符串str

作者头像
全栈程序员站长
发布2022-09-19 16:21:37
5550
发布2022-09-19 16:21:37
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

python字符串常用方法

find(sub[, start[, end]])

在索引start和end之间查找字符串sub ​找到,则返回最左端的索引值,未找到,则返回-1 ​start和end都可省略,省略start说明从字符串开头找 省略end说明查找到字符串结尾,全部省略则查找全部字符串

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.find('r'))
>>> 3

count(sub, start, end)

返回字符串sub在start和end之间出现的次数

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.count('e'))
>>> 5

replace(old, new, count)

old代表需要替换的字符,new代表将要替代的字符,count代表替换的次数(省略则表示全部替换)

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.replace('i', 'I', 1))
>>> There Is a string accessing example # 把小写的i替换成了大写的I

split(sep, maxsplit)

以sep为分隔符切片,如果maxsplit有指定值,则仅分割maxsplit个字符串 分割后原来的str类型将转换成list类型

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.split(' ', 3))
>>> ['There', 'is', 'a', 'string accessing example'] # 这里指定maxsplit=3,代表只分割前3个

startswith(prefix, start, end)

判断字符串是否是以prefix开头,start和end代表从哪个下标开始,哪个下标结束

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.startswith('There', 0, 9))
>>> True

endswith(suffix, start, end)

判断字符串是否以suffix结束,如果是返回True,否则返回False

代码语言:javascript
复制
source_str = "There is a string accessing example"
print(source_str.endswith('example'))
>>> True

lower

将所有大写字符转换成小写

upper

将所有小写字符转换成大写

join

将列表拼接成字符串

代码语言:javascript
复制
list1 = ['ab', 'cd', 'ef']
print(" ".join(list1))
>>> ab cd ef

切片反转

代码语言:javascript
复制
list2 = "hello"
print(list2[::-1])
>>> olleh

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/164969.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • python字符串常用方法
    • find(sub[, start[, end]])
      • count(sub, start, end)
        • replace(old, new, count)
          • split(sep, maxsplit)
            • startswith(prefix, start, end)
              • endswith(suffix, start, end)
                • lower
                  • upper
                    • join
                      • 切片反转
                      领券
                      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档