diff options
Diffstat (limited to 'python.html.markdown')
| -rw-r--r-- | python.html.markdown | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/python.html.markdown b/python.html.markdown index 4aeb93f4..2f91d452 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -419,7 +419,7 @@ for animal in ["dog", "cat", "mouse"]:  """  "range(number)" returns an iterable of numbers -from zero to the given number +from zero up to (but excluding) the given number  prints:      0      1 @@ -628,6 +628,12 @@ def set_global_x(num):  set_x(43)  set_global_x(6) +""" +prints: +    43 +    5 +    6 +"""  # Python has first class functions | 
