python convert hex number to decimal

Solutions on MaxInterview for python convert hex number to decimal by the best coders in the world

showing results for - "python convert hex number to decimal"
Francesca
17 Jun 2020
1print(int("61", 16)) # output 97 (ascii value "a")