Python count() 方法

返回上一级

Python 字符串对象的 count() 方法用于统计字符串里某个字符出现的次数

语法

str.count(sub, start= 0,end=len(string))

参数

参数 说明
sub 搜索的子字符串
start 字符串开始搜索的位置,默认为第一个字符 0
end 字符串中结束搜索的位置,默认为字符串的最后一个位置

返回值

返回子字符串在字符串中出现的次数

范例

下面的代码使用 count() 方法统计子串在字符串中的次数

>>> 'nice to meet you'.count('o')
2
>>> 'nice to meet you'.count('o',8)
1
>>> 'nice to meet you'.count('o',8,10)
0

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.