I am just trying to compute some basic arithmetic, but python won't stop rounding to the nearest integer.
For example, when I input
print float(3 * 1/(1*2) + 1)
it outputs 2.0 rather than 2.5; I can't figure out how to keep it from rounding like this. I would appreciate any help you can provide.