Python function for finding the exponent of a number
Topic: Python function for finding the exponent of a number
Solution
def exp(x): """returns e^x of a number""" return math.exp(x)
List all Python Programs
Solution
def exp(x): """returns e^x of a number""" return math.exp(x)