20 Mar PMCA Saturday 18:30 Python Homework 22.03.19.
Question: Use the recursion we have learn in the class, please try to create a function to recursively calculate the total of 1 + 2 + …. (n-2) + (n-1) + n def total(n): # please write you program below total(int(input('Please enter a number:'))) Class Notes: All...