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

[백준/파이썬] 26082번 특정 대문자를 소문자로 바꾸기

by 현장 2022. 11. 30.

-Code

s = input()
w = list(input().split())
result = ""
for i in s:
    if i in w:
        result += i.lower()
        continue
    result += i
print(result)