-Code
mosq = {'B': 'v', 'E': 'ye', 'H': 'n', 'P': 'r', 'C': 's',
'Y': 'u', 'X': 'h'}
s = input()
res = ""
for w in s:
if w in mosq:
res += mosq[w]
continue
res += w.lower()
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 5948번 Bad Random Numbers (0) | 2023.05.16 |
---|---|
[백준/파이썬] 4593번 Rock, Paper, Scissors (0) | 2023.05.15 |
[백준/파이썬] 12174번 #include <Google I/O.h> (0) | 2023.05.13 |
[백준/파이썬] 24510번 시간복잡도를 배운 도도 (0) | 2023.05.12 |
[백준/파이썬] 17201번 자석 체인 (0) | 2023.05.11 |