I am new to python and I need to write a recursive python program but I need some guidance on how to get started. I have never come across a problem like this so any help would be greatly appreciated.
The recursive function that will print all the integers between n and 1 in descending order. Pass the value n = 4 to the function.
def function(n):
if n>0 or n==1:
Return 4