概述
3.count()用法
1)用法解释
def count(self, sub, start=None, end=None): # real signature unknown; restored from doc
“”"
S.count(sub[, start[, end]]) -> int
Return the number of non-overlapping occurrences of substring sub in
string S[start:end]. Optional arguments start and end are
interpreted as in slice notation.
“”"
return 0
2)实例解析
eg:有如下实例
str1=“one two three sfokur”
str2=“o”
print(str1.count(str2))
print(str1.count(str2, 0, 7))
上述实例的输出结果为:
3
2
最后
以上就是动听小甜瓜为你收集整理的Python基础语法-菜鸟教程-函数用法:count()的全部内容,希望文章能够帮你解决Python基础语法-菜鸟教程-函数用法:count()所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复