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
以上是字符串函数的详细内容。更多信息请关注PHP中文网其他相关文章!