1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

Merge pull request #23 from brianr/patch-1

Use consistent example for demonstrating integer vs. float division
This commit is contained in:
Adam Bard
2013-06-28 19:56:09 -07:00

View File

@@ -34,11 +34,11 @@ to Python 2.x. Look for another tour of Python 3 soon!
# Division is a bit tricky. It is integer division and floors the results # Division is a bit tricky. It is integer division and floors the results
# automatically. # automatically.
11 / 4 #=> 2 5 / 2 #=> 2
# To fix division we need to learn about floats. # To fix division we need to learn about floats.
2.0 # This is a float 2.0 # This is a float
5.0 / 2.0 #=> 2.5 ahhh...much better 11.0 / 4.0 #=> 2.75 ahhh...much better
# Enforce precedence with parentheses # Enforce precedence with parentheses
(1 + 3) * 2 #=> 8 (1 + 3) * 2 #=> 8