diff options
author | Louis Christopher <louis9171@outlook.com> | 2015-11-21 19:28:59 +0530 |
---|---|---|
committer | Louis Christopher <louis9171@outlook.com> | 2015-11-21 19:28:59 +0530 |
commit | 30e364f4108fc077343a8722f3d80150f0d250fe (patch) | |
tree | 2a3589e737ec2d4893b4a85be6ac27243f9fa8ad /python3.html.markdown | |
parent | 1421373f87b13f6c2172f9ff5a9e4ddd2fa2cf2d (diff) |
Fixed erroneous output stated in a comment
range( start = lower limit, End is < Upper limit , Step)
The upper limit is never printed. Fixed the error.
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index 1f9d0e42..3ba57738 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -425,7 +425,6 @@ by step. If step is not indicated, the default value is 1. prints: 4 6 - 8 """ for i in range(4, 8, 2): print(i) |