백준 BAEKJOON 32288번 바코드 닉네임 [PYTHON/파이썬] 백준 BAEKJOON 32288번 바코드 닉네임 [PYTHON/파이썬] (BRONZE Ⅳ)https://www.acmicpc.net/problem/32288 간단한 문자열 변환 문제이다.for 문을 활용하여 결과를 출력하면 된다. n = int(input())S = input()result = ""for s in S: if s == "I": result += "i" elif s == "l": result += "L"print(result) ALGORITHM/PYTHON 2024.10.21