Calling a function in Python

Share

def our_first_function():
print(“Hello enterprising people”)

our_first_function()

In the above example, def is a keyword.

It is used to define a function.

Facebook Comments