I have a integer. Lets say,
var = 83 #less than 0xff
And I have a byte. So let's say I have byte b and I want to calculate the integer value of
b-=var #b as an integer value , possibly by eval(b)?
And then I want to turn it back into a byte, how can I do this in python?