count()函数与center()函数
Posted bashliuhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了count()函数与center()函数相关的知识,希望对你有一定的参考价值。
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()函数的主要内容,如果未能解决你的问题,请参考以下文章