Advertisement
k1alo

Функиция2.0

Nov 3rd, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. def num(a):
  2.     if a <= 100:
  3.         print(a)
  4.         num(a + 1)
  5.  
  6. num(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement