使用python字符串函数计算某字符串出现次数:

import sys
a,b=[i.strip() for i  in  sys.stdin]
print(a.lower().count(b.lower()))