Biblioteca de Python para convertir decimal en octal y hexadecimal

dec =13
print(bin(dec),oct(dec),hex(dec))		#prints decimal,octal,hexadecimal value of 13
san_bt