1.

Write your first Function In Python

Answer»

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



Discussion

No Comment Found