题解 | #计算某字符出现次数#
计算某字符出现次数
http://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
#这道题直接看需要输出什么 需要输出 某个字符出现的次数,那使用count 函数 ,要求不区分大小写 则使用lower直接转义
def count_str(N:str,S :str):
#对输入的字符转小写,并且使用count 取这个值的数量
return N.lower().count(S.lower())
N = input()
S = input()
print(count_str(N,S))
'''
该题的考点,
1.对大小写转换要理解
2.对count使用要理解
'''