diff options
Diffstat (limited to 'python.html.markdown')
| -rw-r--r-- | python.html.markdown | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/python.html.markdown b/python.html.markdown index 55f56071..6d881355 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -692,6 +692,7 @@ def double_numbers(iterable):      double_arr = []      for i in iterable:          double_arr.append(i + i) +    return double_arr  # Running the following would mean we'll double all values first and return all  # of them back to be checked by our condition | 
