python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python的count()方法的使用

Python字符串处理之count()方法的使用

投稿:goldensun

这篇文章主要介绍了Python字符串处理之count()方法的使用,是Python入门的基础知识,需要的朋友可以参考下

 count()方法返回出现在范围内串子数range [start, end]。可选参数的start和end都解释为片符号。
语法

以下是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

您可能感兴趣的文章:
阅读全文