-Code
t = 1
while True:
words = list(input().split())
if words[0] == words[1] == '#':
break
print(f"Case {t}")
for _ in range(int(input())):
line = list(input())
for i in range(len(line)):
if line[i].lower() in words:
line[i] = '_'
print(*line, sep='')
print()
t += 1
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 10101번 삼각형 외우기 (1) | 2024.09.07 |
---|---|
[백준/파이썬] 15838번 Wak Sani Satay (0) | 2024.09.06 |
[백준/파이썬] 18309번 Extreme Temperatures (0) | 2024.09.04 |
[백준/파이썬] 8678번 Zbiór (0) | 2024.09.03 |
[백준/파이썬] 32154번 SUAPC 2024 Winter (3) | 2024.09.02 |