Skip to main content

Python Function definition and Call

#Function definition

def hello_function():
print('this your function')

#Function call

hello_function()

Comments