Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def print_interval(min_value, max_value):
- if min_value > max_value:
- return
- print(min_value)
- print_interval(min_value + 1, max_value)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement