在循环内部,如果当前字符与待查找字符 c 相等,则将 count 的值加 1。 循环结束后,返回最终的 count 值,表示字符 c 在字符串 str 中出现的次数。 所以,1:count = 0;2:len(str) 在题目中,我们需要定义变量记录字符 c 在字符串 str 中出现的次数。还需要使用 for 循环遍历字符串 str 的每个字符。循环...
for i in str:if i==c:flag+=1 return flag