登录
首页 >  文章 >  python教程

字符串函数

来源:dev.to

时间:2024-11-21 15:04:19 112浏览 收藏

golang学习网今天将给大家带来《字符串函数》,感兴趣的朋友请继续看下去吧!以下内容将会涉及到等等知识点,如果你是正在学习文章或者已经是大佬级别了,都非常欢迎也希望大家都能给我建议评论哈~希望能帮助到大家!

字符串函数

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





终于介绍完啦!小伙伴们,这篇关于《字符串函数》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布文章相关知识,快来关注吧!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>