Answers for "recursive generator python"

5

recursive function in python

def factorial(x):
    """This is a recursive function
    to find the factorial of an integer"""

    if x == 1:
        return 1
    else:
      	result = x * factorial(x-1)
        return ()


num = 3
print("The factorial of", num, "is", factorial(num))
Posted by: Guest on January-17-2021
4

recursion in python

def rec(num):
    if num <= 1:
        return 1
    else:
        return num + rec(num - 1)

print(rec(50))
Posted by: Guest on March-03-2021
0

Recursion Python

students = {    'Alice': 98,    'Bob': 67,    'Chris': 85,    'David': 75,    'Ella': 54,    'Fiona': 35,    'Grace': 69}
Posted by: Guest on April-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language