I want to make a range in python from variable a and variable b
a = 0x88
b = 0xff
for x range(a, b):
print(x)
from my code the result like this
136, 137, 138, 139 ...
but I want the result of looping like this
88, 89, 8a, 8b, 8c, 8d, 8e, 8f, 90, 91 .... ff
please help me, thank you