Creating functions
Introduction to Functions
help(print) # You can pass any other function to the help function and this will provide you with info about that particular function
# You just add the name of the function# A function does something
print(args) # You pass to a function argumentsCreating your own function:
# Defining the function:
def greet_person():
print("Hello there, this is a greeting...")
# Calling the function:
greet_person()Calling function instances with args:
Last updated