반응형
[Python/파이썬] 10진수를 16진수로 변환하기
#16진수로 변환하는 함수
#hex()
#Python hexadecimal representation
파이썬으로 hex() 함수를 이용하여 10진수를 16진수로 변환해볼게요.
사실 너무너무 간단해서 설명할 것도 없죠.
아래와 같이 hex함수를 이용하여 10진수를 입력받아서 16진수를 리턴하는 함수를 만들어줍니다.
def to_hex(dec):
return hex(dec)
그리곤 사용해볼까요?
print(to_hex(200)) # 0xc8
print(to_hex(30)) # 0x1e
print(to_hex(2)) # 0x2
아주 간단하죠?
200은 0xc8
30은 0x1e
2는 0x2
잘 변환되네요.
아래에는 완성된 코드를 공유할게요.
def to_hex(dec):
return hex(dec)
print(to_hex(200))
print(to_hex(30))
print(to_hex(2))
반응형