欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python中几个常用的字符串操作

程序员文章站 2024-01-06 09:50:10
...

Python的字符串操作很强大,函数也非常多,初学者不一定能够很好的掌握。我觉得初学者只有很好的运用以下几个常用的函数就基本够用,现整理如下:

大小写转换lower, upper

这是编程经常用到的,代码如下:

string = "Love Python"
print(string.lower())

love python

string = "Love Python"
print(string.upper())

LOVE PYTHON

切片split函数

Python用的最多的数据类型是列表,字符串和列表的转换也最常用。

string = "Love Python"
print(string.split())

[‘Love’, ‘Python’]

合并join函数

算是split函数的逆函数

ls = ['Love', 'Python']
print(' '.join(ls))

Love Python

格式函数format

Python 3 推荐使用

years = 13
name = "Jay"
print("My name is {}. {} years old.".format(name, years))

My name is Jay. 13 years old.

其他字符串函数

函数 描述
count(substr) 返回子字符串出现次数
center(width) 字符串以width长度居中
capitalize() 字符串的第一个字母大写
decode(encoding=‘utf-8’) 以encoding指定的编码格式解码字符串
encode(encoding=‘utf-8’) 以encoding指定的编码格式编码字符串
startswith(substr) 检查字符串是否以substr为开始
endswith(substr) 检查字符串是否以substr为结尾

打完,下课。

上一篇:

下一篇: