计算某字母出现次数
http://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
string = input().lower() word = input().lower() times = 0 for w in string: if w == word: times = times + 1 print(times)
注意!此信息未认证,请谨慎判断信息的真实性!
相关内容推荐