string函数介绍与使用方法详解
- 行业动态
- 2023-11-19
- 1
在Python中,字符串(string)是最常用的数据类型之一,它是一系列字符的集合,可以包含字母、数字、标点符号等,Python提供了许多内置函数来处理字符串,使得字符串操作变得简单高效,本文将详细介绍Python中的string函数及其使用方法。
1. string.capwords(s): 将字符串s中的每个单词首字母大写,其他字母小写。
s = "hello world" result = string.capwords(s) print(result) # 输出:Hello World
2. string.title(s): 将字符串s中的每个单词首字母大写,其他字母小写,其余单词首字母大写。
s = "hello world" result = string.title(s) print(result) # 输出:Hello World
3. string.punctuation(s): 返回一个包含所有标点符号的字符串。
import string s = "hello, world!" punctuation_chars = string.punctuation result = punctuation_chars[0:2] + s + punctuation_chars[-1] print(result) # 输出:"hello, world!"
4. string.digits(n): 返回一个包含所有数字字符的字符串,长度为n。
import string result = string.digits(5) print(result) # 输出:"012345"
5. string.ljust(width, fillchar=’ ‘): 返回一个左对齐的字符串,并使用指定字符填充至指定宽度。
s = "hello" result = s.ljust(10, '*') print(result) # 输出:"hello*****"
6. string.rjust(width, fillchar=’ ‘): 返回一个右对齐的字符串,并使用指定字符填充至指定宽度。
s = "hello" result = s.rjust(10, '*') print(result) # 输出:"*****hello"
7. string.center(width, fillchar=’ ‘): 返回一个居中对齐的字符串,并使用指定字符填充至指定宽度,如果原字符串长度小于指定宽度,则在两侧添加空格。
s = "hello" result = s.center(10, '*') print(result) # 输出:"**hello***"
8. string.replace(old, new, count=-1): 将字符串中的old子串替换为new子串,可选参数count表示最大替换次数,如果count为正数,则替换前count个匹配项;如果count为负数或零,则替换所有匹配项,默认值为-1,表示替换所有匹配项。
s = "hello world" result = s.replace("world", "Python") print(result) # 输出:"hello Python"
9. string.splitlines(): 将字符串按行分割成一个列表,保留行尾的换行符,默认情况下,空白字符(空格、制表符、换行符等)也作为分隔符,如果指定了keepends参数为True(默认值),则保留行尾的换行符;否则,不保留,还可以通过maxsplit参数限制分割的最大次数。
s = "hello world " result = s.splitlines() print(result) # 输出:['hello', 'world']
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/270075.html