print("The decimal value of", dec, "is:") print(bin(dec), "in binary.") print(oct(dec), "in octal.") print(hex(dec), "in hexadecimal.") ...
A number conversion program, i created this program as a mini test to help me progress my python learning. The program allows the user to select the conversion they require. Via both mathematical and ...