码迷,mamicode.com
首页 > 其他好文 > 详细

count()函数与center()函数

时间:2020-06-22 18:45:40      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:统计   ace   string   traceback   返回值   字符串   rac   most   方法   

count()函数
描述:用于统计字符串李某个字符出现的次数。可选参数为在字符串搜索的开始和结束位置
语法:str.count(sub,start=0,end=len(string))
返回值:子字符串在字符串中出现的次数

str=‘www.runoob.com‘
sub=‘o‘
print(‘str.count(‘o‘):‘,str.count(‘sub‘))

center()函数
描述:center()方法返回一个指定宽度width居中的字符串,fillchar为填充的字符。默认为空格
语法:str.center(width[,fillchar])
返回值:返回一个指定的宽度 width 居中的字符串,如果 width 小于字符串宽度直接返回字符串,否则使用 fillchar 去填充。
>>> str = "[www.runoob.com]"
>>> print ("str.center(40, ‘?!‘) : ", str.center(40, ‘?!‘))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: The fill character must be exactly one character long

count()函数描述:用于统计字符串李某个字符出现的次数。可选参数为在字符串搜索的开始和结束位置语法:str.count(sub,start=0,end=len(string))返回值:子字符串在字符串中出现的次数
str=‘www.runoob.com‘sub=‘o‘print(‘str.count(‘o‘):‘,str.count(‘sub‘))
center()函数描述:center()方法返回一个指定宽度width居中的字符串,fillchar为填充的字符。默认为空格语法:str.center(width[,fillchar])返回值:返回一个指定的宽度 width 居中的字符串,如果 width 小于字符串宽度直接返回字符串,否则使用 fillchar 去填充。>>> str = "[www.runoob.com]">>> print ("str.center(40, ‘?!‘) : ", str.center(40, ‘?!‘))Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: The fill character must be exactly one character long

count()函数与center()函数

标签:统计   ace   string   traceback   返回值   字符串   rac   most   方法   

原文地址:https://www.cnblogs.com/bashliuhe/p/13178170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!