convertir Hex en décimal python
myDecimalInteger = int("A278832", 16) #Converts to decimal from base 16
gritter97
myDecimalInteger = int("A278832", 16) #Converts to decimal from base 16
print(int("61", 16)) # output 97 (ascii value "a")