So, I've been trying to round a number but it always gives me a result which I know is wrong, for example:
355 / 60
While this should be presenting me with a float around 5.9 etc. , the output on my machine is just 5, and if I specify float (355 / 60)
the output is 5.0
I noticed this was very wrong, so I tried the same thing in trinket.io and the output was correct.
What is wrong with my IDLE, I suspect it's an issue which has to do with me using python 2.7 and trinket.io using 3, but my output shouldn't be so wrongly rounded, right?