Python Library pour convertir la décimale en octal et hexadécimal
dec =13
print(bin(dec),oct(dec),hex(dec)) #prints decimal,octal,hexadecimal value of 13
san_bt
dec =13
print(bin(dec),oct(dec),hex(dec)) #prints decimal,octal,hexadecimal value of 13