Python:计算字符串中给定char的出现次数

时间:2011-04-16 01:20:18

标签: python string count

我如何在Python中使用“/bin/usr/proga/file.c”中的字符串并计算'/'字符的出现次数?

因此,对于上面的例子,函数将返回4。

2 个答案:

答案 0 :(得分:7)

"/bin/usr/proga/file.c".count("/")

Refer to the documentation for strings

答案 1 :(得分:3)

>>> s="/bin/usr/proga/file.c"
>>> s.count("/")
4
>>> len(s.split("/"))-1
4