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

| 我将如何在Python中采用\“ / bin / usr / proga / file.c \”这样的字符串并计算\'/ \'字符的出现次数? 因此,对于上面的示例,该函数将返回4。     
已邀请:
\"/bin/usr/proga/file.c\".count(\"/\")
有关字符串,请参阅文档。     
>>> s=\"/bin/usr/proga/file.c\"
>>> s.count(\"/\")
4
>>> len(s.split(\"/\"))-1
4
    

要回复问题请先登录注册