Advertisement
Roman_Sarnov

Untitled

Sep 21st, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def sum(x):
  2. if x == 0:
  3. return 0
  4. elif x == 1:
  5. return 1
  6. else:
  7. return x + sum(x - 1)
  8. print(sum(5))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement