본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 2386번 도비의 영어 공부

by 현장 2022. 5. 28.

-Code

while 1:
    study = list(input().split())
    cnt = 0
    if study[0] == '#':
        break
    for i in study[1:]:
        cnt += i.lower().count(study[0])
    print(study[0], cnt)