-Code
s = input()
w = list(input().split())
result = ""
for i in s:
if i in w:
result += i.lower()
continue
result += i
print(result)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 16316번 Baby Bites (0) | 2022.12.01 |
---|---|
[백준/파이썬] 21983번 Basalt Breakdown (0) | 2022.11.30 |
[백준/파이썬] 26082번 WARBOY (0) | 2022.11.28 |
[백준/파이썬] 7947번 Koncert (0) | 2022.11.27 |
[백준/파이썬] 6721번 Backward numbers (0) | 2022.11.26 |