💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### count 字符串出现的次数 ``` mystr="hello python2 hello python3" print(mystr.count('python')) #判断字符串出现的次数 print(mystr.count('python',10)) #判断字符串出现的次数,从10个到最后 print(mystr.count('python',10,15)) #判断字符串出现的次数,从10个到15个 ```