Answers for "python library to convert decimal into octal and hexadecimal"

-1

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
Posted by: Guest on July-02-2020

Code answers related to "python library to convert decimal into octal and hexadecimal"

Python Answers by Framework

Browse Popular Code Answers by Language