Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

hexadecimal with python

# int into hex
_hex = hex(42) # hexadecimal string

# hex into int
# you must specify base 16 as 2nd param as this tells python you're
# working with hexadecimal
int_hex = int(_hex, 16) # returns an integer
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #hexadecimal #python
ADD COMMENT
Topic
Name
5+7 =