Skip to content

Commit 973badf

Browse files
committed
Remove link about old Python division
Python 3 division does much more what you'd expect so this gotcha no longer applies.
1 parent 6202b94 commit 973badf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ There are three types of operators in Python: arithmetic, comparison, and logica
655655
The usual mathematical order (BODMAS) applies to these, just like in normal algebra.
656656

657657
`+`, `-`, `*`, `/`
658-
: Self-explanatory (if you're having trouble with division, read the first half of this article: <http://www.ferg.org/projects/python_gotchas.html>)
658+
: Self-explanatory
659659

660660
'%'
661661
: Remainder. For example, `5 % 2` is 1, `4 % 2` is 0.

0 commit comments

Comments
 (0)