Articles β Python β Functions In Python
Functions In Python
What Is A Function?
Example
# this is the function definition
def HelloWorld():
print("Hello World")
return
# this is the function call
HelloWorld()
Passing Parameter In The Function
# this is the function definition
def HelloWorld(name):
print("Hello ", name)
return
# this is the function call
HelloWorld("gyan")
Returning A Value From The Function
def WelcomeMessage(name):
name = "Hello" + name
return name
welcomeMessage = WelcomeMessage("gyan")
print(welcomeMessage)