0

how to create a program convert hexadecimal to decimal?

this program is how input hexadecimal to be decimal https://www.sololearn.com/discuss/1316935/?ref=app

28th Feb 2019, 2:49 AM
Dion Purnama Putra
1 Answer
0
In python: int("hex_num",16) Eg. print(int("ff",16)) Outputs to: 255
28th Feb 2019, 6:24 AM
Nathan Lewis
Nathan Lewis - avatar