题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
while True:
try:
a = input().lower()
t = input().lower()
ct = 0
for i in a:
if i == t:
ct += 1
else:
continue
print(ct)
except:
break

