标签: python string count
我如何在Python中使用“/bin/usr/proga/file.c”中的字符串并计算'/'字符的出现次数?
因此,对于上面的例子,函数将返回4。
答案 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