pythoncount函数
时间: 2023-10-19 15:22:18 浏览: 127
python中count函数简单用法
我不太清楚你所说的pythoncount函数是指哪一个函数。但是,如果你想要统计一个字符串中某个子串出现的次数,可以使用Python中的count()函数。例如:
```python
str1 = "hello world, world is beautiful"
count = str1.count("world")
print(count) # 输出 2
```
这里的count()函数会返回子串"world"在字符串str1中出现的次数。
阅读全文