You are on page 1of 1

python function

what is function?

function is a block of code which only run when it is called

**********************************************

syntex

key word =

def function space():

print statement

function_name()

def student_data():

print (“hello worlt”)

student_data()

orgument passing to the function

calling the function using counditional statement

You might also like