Posts by dev34 • 23 points
1 post
-
2
votes1
answer83
viewsQ: Python recursive function
I need to build a recursive function in Python that takes an integer n and print to zero and then go back to n. Example: n = 5; > 5 4 3 2 1 2 3 4 5 Until then I built a function, but it only…