Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #python #library #convert #decimal #octal #hexadecimal
ADD COMMENT
Topic
Name
6+6 =