如何计算某个字符串中出现的事件的次数?

时间:2009-11-03 11:16:24

标签: python

在python中,我记得有一个函数可以做到这一点。

.Count之间?

“大棕狐是棕色的” 布朗= 2。

2 个答案:

答案 0 :(得分:26)

为什么不首先阅读文档,这很简单:

>>> "The big brown fox is brown".count("brown")
2

答案 1 :(得分:18)

如果你是Python初学者,有一点值得学习的是如何使用interactive mode来帮助解决这个问题。首先要学习的是dir function,它会告诉你对象的属性。

>>> mystring = "The big brown fox is brown"
>>> dir(mystring)
['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__
ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__g
t__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__
', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '
__rmul__', '__setattr__', '__str__', 'capitalize', 'center', 'count', 'decode',
'encode', 'endswith', 'expandtabs', 'find', 'index', 'isalnum', 'isalpha', 'isdi
git', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lst
rip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit'
, 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', '
translate', 'upper', 'zfill']

请记住,在Python中,方法也是属性。所以现在他使用help function来查询看起来很有希望的方法之一:

>>> help(mystring.count)
Help on built-in function count:

count(...)
    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.

这会显示方法的docstring - 一些帮助文本,您应该养成放入自己的方法的习惯。