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
1 Answer
0
In python:
int("hex_num",16)
Eg.
print(int("ff",16))
Outputs to: 255
this program is how input hexadecimal to be decimal https://www.sololearn.com/discuss/1316935/?ref=app