题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
str_input = (input()).lower() key = (input()).lower() print(str_input.count(key))
思路:读取用户输入的两串字符串,str_input
和 key
。首先将两个输入转换成小写字母形式,然后计算str_input
中key
的小写形式出现了多少次,并打印结果