diff --git a/tutorials/key_differences_between_python_2_and_3.html b/tutorials/key_differences_between_python_2_and_3.html index c8b8cbe..74d5094 100644 --- a/tutorials/key_differences_between_python_2_and_3.html +++ b/tutorials/key_differences_between_python_2_and_3.html @@ -2868,7 +2868,26 @@ In [8]:
Note
Some people pointed out the speed difference between Python 3's range()
and Python2's xrange()
. Since they are implemented the same way one would expect the same speed. However the difference here just comes from the fact that Python 3 generally tends to run slower than Python 2.
Some people pointed out the speed difference between Python 3's range()
and Python2's xrange()
. Since they are implemented the same way one would expect the same speed. However the difference here just comes from the fact that Python 3 generally tends to run slower than Python 2.