Tagged Questions

0
votes
3answers
372 views

How can I force subtraction to be signed in Python?

You can skip to the bottom line if you don't care about the background: I have the following code in Python: ratio = (point.threshold - self.points[0].value) / (self.points[1].value - ...