User-Defined-Functions
Wed 12 November 2025
# created : 20250321
# https://www.scientecheasy.com/2022/12/user-defined-functions-in-python.html/
# Syntax of User defined Function
# def function_name(parameter_list): # function header
# . . . . . .
# body_of_the_function
# . . . . . .
# return <value(s)>
# user defined function definition
def greeting():
print('Hello world!')
print('Welcome to the world of the programming!')
# Function calling.
greeting()
Hello world!
Welcome to the world …Category: python-basics
Read More