31个必备的python字符串方法,建议收藏
off999 2025-04-24 07:14 39 浏览 0 评论
字符串是Python中基本的数据类型,几乎在每个Python程序中都会使用到它。
1、Slicing
slicing切片,按照一定条件从列表或者元组中取出部分元素(比如特定范围、索引、分割值)
s = ' hello '
s = s[:]
print(s)
# hello
s = ' hello '
s = s[3:8]
print(s)
# hello2、strip()
strip()方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
s = ' hello '.strip()
print(s)
# hello
s = '###hello###'.strip()
print(s)
# ###hello###在使用strip()方法时,默认去除空格或换行符,所以#号并没有去除。
可以给strip()方法添加指定字符,如下所示。
s = '###hello###'.strip('#')
print(s)
# hello此外当指定内容不在头尾处时,并不会被去除。
s = ' \n \t hello\n'.strip('\n')
print(s)
#
# hello
s = '\n \t hello\n'.strip('\n')
print(s)
# hello第一个\n前有个空格,所以只会去取尾部的换行符。
最后strip()方法的参数是剥离其值的所有组合,这个可以看下面这个案例。
s = 'www.baidu.com'.strip('cmow.')
print(s)
# baidu最外层的首字符和尾字符参数值将从字符串中剥离。字符从前端移除,直到到达一个不包含在字符集中的字符串字符为止。
在尾部也会发生类似的动作。
3、lstrip()
移除字符串左侧指定的字符(默认为空格或换行符)或字符序列。
s = ' hello '.lstrip()
print(s)
# hello同样的,可以移除左侧所有包含在字符集中的字符串。
s = 'Arthur: three!'.lstrip('Arthur: ')
print(s)
# ee!4、rstrip()
移除字符串右侧指定的字符(默认为空格或换行符)或字符序列。
s = ' hello '.rstrip()
print(s)
# hello5、removeprefix()
Python3.9中移除前缀的函数。
# python 3.9
s = 'Arthur: three!'.removeprefix('Arthur: ')
print(s)
# three!和strip()相比,并不会把字符集中的字符串进行逐个匹配。
6、removesuffix()
Python3.9中移除后缀的函数。
s = 'HelloPython'.removesuffix('Python')
print(s)
# Hello7、replace()
把字符串中的内容替换成指定的内容。
s = 'string methods in python'.replace(' ', '-')
print(s)
# string-methods-in-python
s = 'string methods in python'.replace(' ', '')
print(s)
# stringmethodsinpython8、re.sub()
re是正则的表达式,sub是substitute表示替换。
re.sub则是相对复杂点的替换。
import re
s = "string methods in python"
s2 = s.replace(' ', '-')
print(s2)
# string----methods-in-python
s = "string methods in python"
s2 = re.sub("\s+", "-", s)
print(s2)
# string-methods-in-python和replace()做对比,使用re.sub()进行替换操作,确实更高级点。
9、split()
对字符串做分隔处理,最终的结果是一个列表。
s = 'string methods in python'.split()
print(s)
# ['string', 'methods', 'in', 'python']当不指定分隔符时,默认按空格分隔。
s = 'string methods in python'.split(',')
print(s)
# ['string methods in python']此外,还可以指定字符串的分隔次数。
s = 'string methods in python'.split(' ', maxsplit=1)
print(s)
# ['string', 'methods in python']10、rsplit()
从右侧开始对字符串进行分隔。
s = 'string methods in python'.rsplit(' ', maxsplit=1)
print(s)
# ['string methods in', 'python']11、join()
string.join(seq)。以string作为分隔符,将seq中所有的元素(的字符串表示)合并为一个新的字符串。
list_of_strings = ['string', 'methods', 'in', 'python']
s = '-'.join(list_of_strings)
print(s)
# string-methods-in-python
list_of_strings = ['string', 'methods', 'in', 'python']
s = ' '.join(list_of_strings)
print(s)
# string methods in python12、upper()
将字符串中的字母,全部转换为大写。
s = 'simple is better than complex'.upper()
print(s)
# SIMPLE IS BETTER THAN COMPLEX13、lower()
将字符串中的字母,全部转换为小写。
s = 'SIMPLE IS BETTER THAN COMPLEX'.lower()
print(s)
# simple is better than complex14、capitalize()
将字符串中的首个字母转换为大写。
s = 'simple is better than complex'.capitalize()
print(s)
# Simple is better than complex15、islower()
判断字符串中的所有字母是否都为小写,是则返回True,否则返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.islower()) # False
print('simple is better than complex'.islower()) # True16、isupper()
判断字符串中的所有字母是否都为大写,是则返回True,否则返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.isupper()) # True
print('SIMPLE IS BETTER THAN complex'.isupper()) # False17、isalpha()
如果字符串至少有一个字符并且所有字符都是字母,则返回 True,否则返回 False。
s = 'python'
print(s.isalpha())
# True
s = '123'
print(s.isalpha())
# False
s = 'python123'
print(s.isalpha())
# False
s = 'python-123'
print(s.isalpha())
# False18、isnumeric()
如果字符串中只包含数字字符,则返回 True,否则返回 False。
s = 'python'
print(s.isnumeric())
# False
s = '123'
print(s.isnumeric())
# True
s = 'python123'
print(s.isnumeric())
# False
s = 'python-123'
print(s.isnumeric())
# False19、isalnum()
如果字符串中至少有一个字符并且所有字符都是字母或数字,则返回True,否则返回 False。
s = 'python'
print(s.isalnum())
# True
s = '123'
print(s.isalnum())
# True
s = 'python123'
print(s.isalnum())
# True
s = 'python-123'
print(s.isalnum())
# False20、count()
返回指定内容在字符串中出现的次数。
n = 'hello world'.count('o')
print(n)
# 2
n = 'hello world'.count('oo')
print(n)
# 021、find()
检测指定内容是否包含在字符串中,如果是返回开始的索引值,否则返回-1。
s = 'Machine Learning'
idx = s.find('a')
print(idx)
print(s[idx:])
# 1
# achine Learning
s = 'Machine Learning'
idx = s.find('aa')
print(idx)
print(s[idx:])
# -1
# g此外,还可以指定开始的范围。
s = 'Machine Learning'
idx = s.find('a', 2)
print(idx)
print(s[idx:])
# 10
# arning22、rfind()
类似于find()函数,返回字符串最后一次出现的位置,如果没有匹配项则返回 -1。
s = 'Machine Learning'
idx = s.rfind('a')
print(idx)
print(s[idx:])
# 10
# arning23、startswith()
检查字符串是否是以指定内容开头,是则返回 True,否则返回 False。
print('Patrick'.startswith('P'))
# True24、endswith()
检查字符串是否是以指定内容结束,是则返回 True,否则返回 False。
print('Patrick'.endswith('ck'))
# True25、partition()
string.partition(str),有点像find()和split()的结合体。
从str出现的第一个位置起,把字符串string分成一个3 元素的元组(string_pre_str,str,string_post_str),如果string中不包含str则 string_pre_str==string。
s = 'Python is awesome!'
parts = s.partition('is')
print(parts)
# ('Python ', 'is', ' awesome!')
s = 'Python is awesome!'
parts = s.partition('was')
print(parts)
# ('Python is awesome!', '', '')26、center()
返回一个原字符串居中,并使用空格填充至长度width的新字符串。
s = 'Python is awesome!'
s = s.center(30, '-')
print(s)
# ------Python is awesome!------27、ljust()
返回一个原字符串左对齐,并使用空格填充至长度width的新字符串。
s = 'Python is awesome!'
s = s.ljust(30, '-')
print(s)
# Python is awesome!------------28、rjust()
返回一个原字符串右对齐,并使用空格填充至长度width的新字符串。
s = 'Python is awesome!'
s = s.rjust(30, '-')
print(s)
# ------------Python is awesome!29、f-Strings
f-string是格式化字符串的新语法。
与其他格式化方式相比,它们不仅更易读,更简洁,不易出错,而且速度更快!
num = 1
language = 'Python'
s = f'{language} is the number {num} in programming!'
print(s)
# Python is the number 1 in programming!
num = 1
language = 'Python'
s = f'{language} is the number {num*8} in programming!'
print(s)
# Python is the number 8 in programming!30、swapcase()
翻转字符串中的字母大小写。
s = 'HELLO world'
s = s.swapcase()
print(s)
# hello WORLD31、zfill()
string.zfill(width)。
返回长度为width的字符串,原字符串string右对齐,前面填充0。
s = '42'.zfill(5)
print(s)
# 00042
s = '-42'.zfill(5)
print(s)
# -0042
s = '+42'.zfill(5)
print(s)
# +0042- 上一篇:Python字符串split的六种用法
- 下一篇:Python内置函数详解
相关推荐
- 笔记本电脑上网卡多少钱一个月
-
收费有好几种!1.按流量收费,这适合不怎么上网看电影,下载的人.(想用就用,而且价格便宜)2.按小时收费,用电脑的无线连移动的无线,那有说明。(10元40小时/每月,20元100小时/每月等等,还是手...
- 一键重装系统后一直黑屏(电脑一键重装系统后黑屏)
-
黑屏故障一般有四种情况:一,全黑。主机、显示器(包括指示灯)均不亮二,显示器的指示灯亮,主机的指示灯不亮三,显示器与主机的指示灯均亮且开关电源冷却风扇也正常旋转,但显示器不显示。四,动态黑屏,开机时显...
- 激活windows10企业版ltsc(激活Windows10企业版转到设置以激活Windows)
-
windows10企业版ltsc永久激活方法/步骤1、下载密钥采集器,打开采集器,选择密钥的版本,选好后点开始采集。2、采集完毕后,点击采集到的密钥进行复制,粘贴到密钥擢爻充种的输入窗口里,点击下一步...
- win10设置每天定时关机命令(win10设置每天自动关机时间)
-
首先按【Win和R】键打开运行框,输入【shutdown-t-s600】;-s-t及600前面均有一个空格,其中的数字代表的是时间,单位为秒;如600即代表10分钟,点击【确定】完成设置,此时...
- win7旗舰版永久激活码怎么获取
-
一、在线获取激活密钥1、访问官方网站:打开浏览器,访问微软官方网站。2、注册账号:如果没有微软账号,需要先注册一个账号。3、登录账号:使用注册的账号登录微软官方网站。4、获取密钥:在官方网站上找到wi...
- 路由器恢复出厂设置怎么办
-
家里路由器重置以后,需要重新设置宽带网络连接和建立WiFi网络,安装设置方法∶然后打开浏览器,输入192.168.1.1,一般是这个网站,不是的话就看路由器说明。输入用户名admin,密码admin登...
- 电脑怎么恢复到上一次系统(电脑怎么恢复到之前的系统)
-
前提你得有备份,用备份还原就可以了, 电脑还原初始状态的步骤如下: 1、将电脑关机然后开机或者直接点击重启,然后按住"DELETE"键,这时,电脑会自动进入到BIOS 2、电脑屏幕上会显示两...
- 路由器品牌型号(路由器品牌型号在哪查)
-
其实关于路由器的排名,随便百度一下大把都是,在此我就不再赘述了。但是关于路由器的选择上,我个人的观点是如果家里对不怎么打游戏,房子户型也不太复杂,那么200快钱的小米,华为,TP等等市面上所有这个价位...
- win10专业版不激活有什么影响
-
如果Windows10专业版未激活,您将面临以下问题:1.桌面背景将变为黑色,无法更改。2.您将无法自定义主题和颜色。3.您将无法使用个性化设置,如锁屏图片和屏幕保护程序。4.您将无法接收W...
- 企业qq最新版官方下载(企业qqapp下载)
-
你好,企业微信需要下载的,手机端需要下载企业微信APP。企业微信,是腾讯微信团队为企业打造的专业办公管理工具。与微信一致的沟通体验,丰富免费的OA应用,并与微信消息、小程序、微信支付等互通,助力企业高...
-
- huifuqqcom 官方网站(huifu.qq.com)
-
qq恢复官方网站,http://huifu.qq.com/1、什么是QQ恢复系统?QQ恢复系统是腾讯公司提供的一项找回QQ联系人、QQ群的服务,向所有QQ用户免费开放。2、QQ恢复系统能恢复多长时间内删除的好友?普通用户可以申请恢复3个月内...
-
2025-12-19 16:51 off999
- 优启通u盘装win7(优启通重装win7)
-
如果安装windows7视窗操作系统,推荐使用ACHI硬盘模式,可以提高SATA硬盘的读写速度,比传统IDE模式大约提高了10%-30%。硬盘的读写速度提高,相对的噪音也会大一些,如果不需要进行大量数...
- pp助手苹果版下载安装(pp助手软件下载安装苹果)
-
Ipad上不能直接下载PP助手进行安装,会提示失败。方法如下:1.将Ipad用数据线与电脑连接,然后按照电脑端的pp助手。2.然后进入电脑端的pp助手,可以看到选项,安装pp助手到Ipad上。...
欢迎 你 发表评论:
- 一周热门
-
-
抖音上好看的小姐姐,Python给你都下载了
-
全网最简单易懂!495页Python漫画教程,高清PDF版免费下载
-
Python 3.14 的 UUIDv6/v7/v8 上新,别再用 uuid4 () 啦!
-
飞牛NAS部署TVGate Docker项目,实现内网一键转发、代理、jx
-
python入门到脱坑 输入与输出—str()函数
-
宝塔面板如何添加免费waf防火墙?(宝塔面板开启https)
-
Python三目运算基础与进阶_python三目运算符判断三个变量
-
(新版)Python 分布式爬虫与 JS 逆向进阶实战吾爱分享
-
失业程序员复习python笔记——条件与循环
-
系统u盘安装(win11系统u盘安装)
-
- 最近发表
- 标签列表
-
- python计时 (73)
- python安装路径 (56)
- python类型转换 (93)
- python进度条 (67)
- python吧 (67)
- python的for循环 (65)
- python格式化字符串 (61)
- python静态方法 (57)
- python列表切片 (59)
- python面向对象编程 (60)
- python 代码加密 (65)
- python串口编程 (77)
- python封装 (57)
- python写入txt (66)
- python读取文件夹下所有文件 (59)
- python操作mysql数据库 (66)
- python获取列表的长度 (64)
- python接口 (63)
- python调用函数 (57)
- python多态 (60)
- python匿名函数 (59)
- python打印九九乘法表 (65)
- python赋值 (62)
- python异常 (69)
- python元祖 (57)
