更多精彩内容,欢迎关注:

视频号
视频号

抖音
抖音

快手
快手

微博
微博

python string函数

文档

python string函数

python string函数包括:1、str.capitalize();2、str.upper();3、str.lower();4、str.swapcase();5、str.title();6、str.center()。
推荐度:
导读python string函数包括:1、str.capitalize();2、str.upper();3、str.lower();4、str.swapcase();5、str.title();6、str.center()。

python string函数是什么?一起来看下吧:

python string函数包括:

1、str.capitalize:将原字符串内的首字母转成大写,其他部分小写,再返回新字符串

print("s.capitalize() = {function}"
s.capitalize() = Abcada a

2、str.lower:将原字符串的字母转为小写

print("s.lower() = {function}".format(function = s.lower()))
s.lower() = abcada a

3、str.upper:将原字符串的字母转为大写

print("s.upper() = {function}".format(function = s.upper()))
s.upper() = ABCADA A

4、str.swapcase:将原字符串的大写小写反转

print("s.swapcase() = {function}".format(function = s.swapcase()))
s.swapcase() = ABCAdA A

5、str.title:原字符串内如果有特殊字符(包括数字)连接字母,则将特殊字符后的首个英文字母转化为大写形态,并返回新字符串

print("s2.title() = {function}".format(function = s2.title()))
s2.title() = 123A Abc Abcsaa S

6、str.center:str.center(宽度,填充字符) 将字符串以居中的格式返回,若宽度值比len(s)小则返回原字符串,填充以从左到右为规则,填充字符的默认值为空格,值可以自己更改

print("s2.center() = {function}".format(function = s2.center(19,'&')))
print("s2.center() = {function}".format(function = s2.center(20,'&')))
#s2 = 123a abc ABCSAa s
s2.center() = &123a abc ABCSAa s 
s2.center() = &123a abc ABCSAa s &

7、str.expandtabs:str.expandtabs(tabsize = 8) 将原字符串中 以前的字符补满8位(默认),tabsize的值从0-7即8位,在0-7中任意取值则默认tabsize = 8,此后往上+1,就相当于增加一个空格

print("s3.expandtabs ={function}".format(function = s3.expandtabs()))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(0)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(5)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(8)))
print("s3.expandtabs ={function}".format(function = s3.expandtabs(9)))#s3 = "	as 		b123"
s3.expandtabs =        as              b123
s3.expandtabs =as b123
s3.expandtabs =     as        b123
s3.expandtabs =        as              b123
s3.expandtabs =         as

除了上述举例的,string函数还有许多实用的函数。

以上就是小编今天的分享,希望可以帮助到大家。

文档

python string函数

python string函数包括:1、str.capitalize();2、str.upper();3、str.lower();4、str.swapcase();5、str.title();6、str.center()。
推荐度:
为你推荐
资讯专栏
热门视频
相关推荐
python构造函数 python延时函数 debug error怎么解决 python读取json并解析 python 列表添加 python字典按值的大小排序 python 排序算法 spring boot mysql配置 vue动态绑定style js date加一天 字符转换成ascii码 c语言struct用法 java reentrantlock python tkinter教程 js获取日期 python numpy教程 opencv安装教程python js获取随机数 ubuntu卸载mysql cad的基本命令 python类的继承 python递归函数 python内置函数 python判断字符串相等 python查看已安装的包 python强制类型转换 python input函数怎么用 python类型转换 python split函数用法 python读取json python组合数据类型 python查看变量类型 python split函数 c++ template用法 老抽和生抽的区别 拉链下滑如何解决 防蓝光眼镜怎么辨别 葱怎么保存 老姜和生姜的区别 新鲜蘑菇怎么保存
Top