Guest User

Untitled

a guest
Jul 17th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. def f(n):
  2. if n >= 0:
  3. while n < 5:
  4. n += 1
  5. print(n)
  6. return n
Add Comment
Please, Sign In to add comment