Advertisement
STANAANDREY

lsd3 9

Oct 14th, 2022 (edited)
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. def print_interval(min_value, max_value):
  2.     if min_value > max_value:
  3.         return
  4.  
  5.     print(min_value)
  6.     print_interval(min_value + 1, max_value)
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement