카테고리 없음

Python / 정수 > 유니코드

mommos 2022. 6. 4. 02:45
a = int(input())
print(chr(a))

a 를 int 형으로 변환해 입력받은뒤

chr(a) 로 유니코드형식으로 변환해서 출력한다