| Write your first Function In Python
To write function in phython we will follow below instruction
(1)Step-1: to start we will use keyword def and then mention the function name.
(2)Step-2: We can now pass the arguments and enclose them using the parentheses. Now add colon in the end.
(3)Step-3: Now in next line after pressing an enter, we will write the desired Python statements for execution.
Below is the example to write code-
#define function in phython and calling
def function1():
print("This is my first function")
#Now calling of function
function1()
Output is-
This is my First function | | |