时间:2021-07-01 10:21:17 帮助过:76人阅读
以下是count()方法的语法:
str.count(sub, start= 0,end=len(string))
参数
返回值
此方法返回集中在长度宽度的字符串。
例子
下面的例子显示了count()方法的使用。
#!/usr/bin/python str = "this is string example....wow!!!"; sub = "i"; print "str.count(sub, 4, 40) : ", str.count(sub, 4, 40) sub = "wow"; print "str.count(sub) : ", str.count(sub)
当我们运行上面的程序,它会产生以下结果:
str.count(sub, 4, 40) : 2 str.count(sub, 4, 40) : 1