I'm learning via Learn Python The Hard Way and I've come across:
Notice the math seems “wrong”? There are no fractions, only whole numbers. Find out why by researching what a “floating point” number is.
I've read what it is on: http://docs.python.org/tutorial/floatingpoint.html
I can't figure out on how I can output floating point numbers, I've thought about using round(3 + 3, 2).
Is this right?