Advertisements
Advertisements
Question
How to set the limit for recursive function? Give an example.
Solution
Python also allows you to change the limit using sys.setrecursionlimit (limit value).
Example:
import sys
sys.setrecursionlimit(3000)
def fact (n):
if n = = 0:
return 1
else:
return n * fact (n – 1)
print (fact (2000))
APPEARS IN
RELATED QUESTIONS
A named block of code that is designed to do one specific job is called ______
Pick the correct one to execute the given statement successfully.
if ______ : print(x, " is a leap year")
Differentiate ceil() and floor() function?
Write a Python code to check whether a given year is a leap year or not.
What are the points to be noted while defining a function?
Explain the different types of functions with an example.
Write a Python code to find the L.C.M. of two numbers.
Explain the following built-in function.
id()
Explain the following built-in function.
round()
Explain the following built-in function.
pow()