Answers for "python standard conversion hexadecimal decimal"

2

converting decimal to hex in python

def convert_to_hex(number:int):
    if number == None:
        return "Invalid input"
    elif type(number) == float:
        return "Float not handled"
    elif type(number) == str:
        temp = int(number)
        return format(temp, "02x")
    return format(number, '02x')
print(convert_to_hex(30))
print(convert_to_hex(None))
print(convert_to_hex("7"))
print(convert_to_hex(7.09))
Posted by: Guest on June-23-2021

Code answers related to "python standard conversion hexadecimal decimal"

Python Answers by Framework

Browse Popular Code Answers by Language