Write a Python Program that should accept a decimal number and Convert to Binary, Octal and Hexadecimal. code example
Example: python library to convert decimal into octal and hexadecimal
dec =13
print(bin(dec),oct(dec),hex(dec)) #prints decimal,octal,hexadecimal value of 13