Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #recursion example
- #finds all values below a provided value
- x=int(input("Enter a number"))
- def steps(x):
- if x == 0:
- return 0
- else:
- return (x-1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement