Created
July 17, 2018 16:36
-
-
Save alexbw/c6087d70bc2c23e9b0ecb31e17c81ee5 to your computer and use it in GitHub Desktop.
Revisions
-
alexbw created this gist
Jul 17, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ def f(n): if n >= 0: while n < 5: n += 1 print(n) return n