etc/Coding Test
[codeup] 78. 10진 정수 입력받아 16진수로 출력하기1
Jun's N
2021. 12. 8. 14:06
n = int(input())
print('%x'% n) # 16진수(hexadecimal) 소문자 형태 문자열로 출력
728x90