Using Python 2.7. If I want to subtract 120.00 - 30, I get 90.0 but I want 90.00. I've tried using the format function:
a = 120.00 - 30
format(a, '.2f')
which gives me a string of '90.00', but I don't want a string. I need a decimal with 2 precision points like: 90.00.