Write a recursive function to find the factorial of a number n.

def factorial(n):               if n == 1 or n == 0:                               return 1               else:                               return n * factorial(n-1)

MB
Answered by Micah B. Python tutor

1457 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Why are negative indexes used?


Write a function that takes a list of numbers as input, and outputs the average of the numbers. The function should catch any errors.


Write a Python script to take a product name as input and then automatically google search reviews for it and open the top 3 search results in different tabs


Write a recursive function to return the nth Fibonacci number in Python


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

MyTutor is part of the IXL family of brands:

© 2026 by IXL Learning