python how to convert list of hexadecimal number to decimal python code example
Example: python convert hex number to decimal
print(int("61", 16)) # output 97 (ascii value "a")
print(int("61", 16)) # output 97 (ascii value "a")