Python String count() 函数是 Python 编程语言中的一个内置函数,它返回给定字符串中子字符串出现的次数。
用法:
string.count(substring, start=…, end=…)
Parameters:
- count() 函数有一个强制参数和两个可选参数。
- 必选参数:
- substring - 要查找其计数的字符串。
- 可选参数:
- 开始(可选)- 搜索开始的字符串中的起始索引。
- 结束(可选)- 搜索结束的字符串中的结束索引。
- 必选参数:
返回值:
count() 方法返回一个整数,表示子字符串在给定字符串中出现的次数。
例一:count()方法的实现没有可选参数
Python3
# Python program to demonstrate the use of
# count() method without optional parameters
# string in which occurrence will be checked
string = "geeks for geeks"
# counts the number of times substring occurs in
# the given string and returns an integer
print(string.count("geeks"))
输出:
2
示例2:count()方法的实现使用可选参数
Python3
# Python program to demonstrate the use of
# count() method using optional parameters
# string in which occurrence will be checked
string = "geeks for geeks"
# counts the number of times substring occurs in
# the given string between index 0 and 5 and returns
# an integer
print(string.count("geeks", 0, 5))
print(string.count("geeks", 0, 15))
输出:
1 2
注:本文由纯净天空筛选整理自Striver大神的英文原创作品 Python String count() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。