# Convert to Other Number Systems : Binary, Hex, Oct #input >> i = 12 # convertion print("Binary: " + str(bin(i))) print("Octal: " + str(oct(i))) print("Hex: " + str(hex(i))) # output >> # Binary: 0b1100 # Octal: 0o14 # Hex: 0xc