字符串函数

ID:21570 / 打印

字符串函数

python 字符串函数:

python 有一组可以在字符串上使用的内置方法。

所有字符串方法都会返回新值。他们不会改变原始字符串。

1.**capitalize(): **将字符串的第一个字符大写。

name = "pritha" print(name.capitalize())  
pritha 

2.casefold():将字符串转换为小写

name = "pritha" print(name.casefold())  
pritha 

3.center():返回居中的字符串

name = "pritha" print(name.center(10,"-"))  
--pritha-- 

4.count():返回指定值在字符串中出现的次数

name = "lakshmipritha" print(name.count('a'))  
2 

5.encode():返回字符串的编码版本

name = "lakshmipritha" print(name.encode())  
b'lakshmipritha' 

6.endswith():如果字符串以指定值结尾则返回 true

name = "lakshmi pritha" print(name.endswith('pritha'))  
true 

7.find():在字符串中搜索指定值并返回找到它的位置

name = "lakshmi pritha" print(name.find('pritha'))  
8 

8.format():格式化字符串中的指定值

name = "hello, {}. welcome to {}." print(name.format("pritha", "python"))  
hello, pritha. welcome to python. 

9.format_map():格式化字符串中的指定值

text = "my name is {name} and i am {age} years old." data = {"name": "pritha", "age":30 } print(text.format_map(data))  
my name is pritha and i am 30 years old. 

10.index():在字符串中搜索指定值并返回找到它的位置

name= "lakshmi pritha" position = name.index("pritha") print(position) 
8 

11.isalnum():如果字符串中的所有字符都是字母数字,则返回 true

12.isalpha():如果字符串中的所有字符都在字母表中,则返回 true

13.isacii():如果字符串中的所有字符都是 ascii 字符,则返回 true

14.isdecimal():如果字符串中的所有字符都是小数,则返回 true

15.isdigit():如果字符串中的所有字符都是数字,则返回 true

16.isidentifier():如果字符串是标识符,则返回 true

17.islower():如果字符串中的所有字符均为小写,则返回 true

18.isnumeric():如果字符串中的所有字符都是数字,则返回 true

19.isprintable():如果字符串中的所有字符均可打印,则返回 true

20.isspace():如果字符串中的所有字符都是空格,则返回 true

21.istitle():如果字符串遵循标题规则,则返回 true

22.isupper():如果字符串中的所有字符均为大写,则返回 true

name = "pritha" print(name.isalnum()) print(name.isalpha()) print(name.isascii()) print(name.isdecimal()) print(name.isdigit()) print(name.isidentifier()) print(name.islower()) print(name.isnumeric()) print(name.isprintable()) print(name.isspace()) print(name.istitle()) print(name.isupper())  
True True True False False True True False True False False False      
上一篇: Flask后端无响应:真机调试请求失败的原因是什么?
下一篇: 重构规则引擎 DSL

作者:admin @ 24资源网   2025-01-14

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。