题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
s = input()
c = input()
i=0
for c1 in s.upper():
if c1 == c.upper() :
i+=1
print(i)
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
s = input()
c = input()
i=0
for c1 in s.upper():
if c1 == c.upper() :
i+=1
print(i)
相关推荐