华为机试HJ2计算某字符出现次数 题目: 计算字符串中的某个字符出现的次数,不区分大小写。 想法: 将输入的字符串和要查询的字符变为小写,遍历整个字符串统计要查的字符个数。 input_str = input().lower() check_str = input().lower() count = 0 for i in input_str: if i == check_str: count += 1 print(count)