31个必备的python字符串方法,建议收藏
off999 2025-04-24 07:14 21 浏览 0 评论
字符串是Python中基本的数据类型,几乎在每个Python程序中都会使用到它。
1、Slicing
slicing切片,按照一定条件从列表或者元组中取出部分元素(比如特定范围、索引、分割值)
s = ' hello '
s = s[:]
print(s)
# hello
s = ' hello '
s = s[3:8]
print(s)
# hello
2、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)
# hello
5、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)
# Hello
7、replace()
把字符串中的内容替换成指定的内容。
s = 'string methods in python'.replace(' ', '-')
print(s)
# string-methods-in-python
s = 'string methods in python'.replace(' ', '')
print(s)
# stringmethodsinpython
8、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 python
12、upper()
将字符串中的字母,全部转换为大写。
s = 'simple is better than complex'.upper()
print(s)
# SIMPLE IS BETTER THAN COMPLEX
13、lower()
将字符串中的字母,全部转换为小写。
s = 'SIMPLE IS BETTER THAN COMPLEX'.lower()
print(s)
# simple is better than complex
14、capitalize()
将字符串中的首个字母转换为大写。
s = 'simple is better than complex'.capitalize()
print(s)
# Simple is better than complex
15、islower()
判断字符串中的所有字母是否都为小写,是则返回True,否则返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.islower()) # False
print('simple is better than complex'.islower()) # True
16、isupper()
判断字符串中的所有字母是否都为大写,是则返回True,否则返回False。
print('SIMPLE IS BETTER THAN COMPLEX'.isupper()) # True
print('SIMPLE IS BETTER THAN complex'.isupper()) # False
17、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())
# False
18、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())
# False
19、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())
# False
20、count()
返回指定内容在字符串中出现的次数。
n = 'hello world'.count('o')
print(n)
# 2
n = 'hello world'.count('oo')
print(n)
# 0
21、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
# arning
22、rfind()
类似于find()函数,返回字符串最后一次出现的位置,如果没有匹配项则返回 -1。
s = 'Machine Learning'
idx = s.rfind('a')
print(idx)
print(s[idx:])
# 10
# arning
23、startswith()
检查字符串是否是以指定内容开头,是则返回 True,否则返回 False。
print('Patrick'.startswith('P'))
# True
24、endswith()
检查字符串是否是以指定内容结束,是则返回 True,否则返回 False。
print('Patrick'.endswith('ck'))
# True
25、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 WORLD
31、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内置函数详解
相关推荐
- 面试官:来,讲一下枚举类型在开发时中实际应用场景!
-
一.基本介绍枚举是JDK1.5新增的数据类型,使用枚举我们可以很好的描述一些特定的业务场景,比如一年中的春、夏、秋、冬,还有每周的周一到周天,还有各种颜色,以及可以用它来描述一些状态信息,比如错...
- 一日一技:11个基本Python技巧和窍门
-
1.两个数字的交换.x,y=10,20print(x,y)x,y=y,xprint(x,y)输出:102020102.Python字符串取反a="Ge...
- Python Enum 技巧,让代码更简洁、更安全、更易维护
-
如果你是一名Python开发人员,你很可能使用过enum.Enum来创建可读性和可维护性代码。今天发现一个强大的技巧,可以让Enum的境界更进一层,这个技巧不仅能提高可读性,还能以最小的代价增...
- Python元组编程指导教程(python元组的概念)
-
1.元组基础概念1.1什么是元组元组(Tuple)是Python中一种不可变的序列类型,用于存储多个有序的元素。元组与列表(list)类似,但元组一旦创建就不能修改(不可变),这使得元组在某些场景...
- 你可能不知道的实用 Python 功能(python有哪些用)
-
1.超越文件处理的内容管理器大多数开发人员都熟悉使用with语句进行文件操作:withopen('file.txt','r')asfile:co...
- Python 2至3.13新特性总结(python 3.10新特性)
-
以下是Python2到Python3.13的主要新特性总结,按版本分类整理:Python2到Python3的重大变化Python3是一个不向后兼容的版本,主要改进包括:pri...
- Python中for循环访问索引值的方法
-
技术背景在Python编程中,我们经常需要在循环中访问元素的索引值。例如,在处理列表、元组等可迭代对象时,除了要获取元素本身,还需要知道元素的位置。Python提供了多种方式来实现这一需求,下面将详细...
- Python enumerate核心应用解析:索引遍历的高效实践方案
-
喜欢的条友记得关注、点赞、转发、收藏,你们的支持就是我最大的动力源泉。根据GitHub代码分析统计,使用enumerate替代range(len())写法可减少38%的索引错误概率。本文通过12个生产...
- Python入门到脱坑经典案例—列表去重
-
列表去重是Python编程中常见的操作,下面我将介绍多种实现列表去重的方法,从基础到进阶,帮助初学者全面掌握这一技能。方法一:使用集合(set)去重(最简单)pythondefremove_dupl...
- Python枚举类工程实践:常量管理的标准化解决方案
-
本文通过7个生产案例,系统解析枚举类在工程实践中的应用,覆盖状态管理、配置选项、错误代码等场景,适用于Web服务开发、自动化测试及系统集成领域。一、基础概念与语法演进1.1传统常量与枚举类对比#传...
- 让Python枚举更强大!教你玩转Enum扩展
-
为什么你需要关注Enum?在日常开发中,你是否经常遇到这样的代码?ifstatus==1:print("开始处理")elifstatus==2:pri...
- Python枚举(Enum)技巧,你值得了解
-
枚举(Enum)提供了更清晰、结构化的方式来定义常量。通过为枚举添加行为、自动分配值和存储额外数据,可以提升代码的可读性、可维护性,并与数据库结合使用时,使用字符串代替数字能简化调试和查询。Pytho...
- 78行Python代码帮你复现微信撤回消息!
-
来源:悟空智能科技本文约700字,建议阅读5分钟。本文基于python的微信开源库itchat,教你如何收集私聊撤回的信息。[导读]Python曾经对我说:"时日不多,赶紧用Python"。于是看...
- 登录人人都是产品经理即可获得以下权益
-
文章介绍如何利用Cursor自动开发Playwright网页自动化脚本,实现从选题、写文、生图的全流程自动化,并将其打包成API供工作流调用,提高工作效率。虽然我前面文章介绍了很多AI工作流,但它们...
- Python常用小知识-第二弹(python常用方法总结)
-
一、Python中使用JsonPath提取字典中的值JsonPath是解析Json字符串用的,如果有一个多层嵌套的复杂字典,想要根据key和下标来批量提取value,这是比较困难的,使用jsonpat...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- python计时 (73)
- python安装路径 (56)
- python类型转换 (93)
- python自定义函数 (53)
- python进度条 (67)
- python吧 (67)
- python字典遍历 (54)
- python的for循环 (65)
- python格式化字符串 (61)
- python串口编程 (60)
- python读取文件夹下所有文件 (59)
- java调用python脚本 (56)
- python操作mysql数据库 (66)
- python字典增加键值对 (53)
- python获取列表的长度 (64)
- python接口 (63)
- python调用函数 (57)
- python人脸识别 (54)
- python多态 (60)
- python命令行参数 (53)
- python匿名函数 (59)
- python打印九九乘法表 (65)
- python赋值 (62)
- python异常 (69)
- python元祖 (57)