def my_function_name():
  #Function code


//Calling it
my_function_name()

Using Parameters

def my_function_name(my_variable1, my_variable2):
  #Function code

//Calling it
my_function_name(21, "abc")

my_function_name(my_variable1=21, my_variable2="abc")
my_function_name(my_variable2="abc", my_variable1=21)
Default values
def my_function_name(my_variable1, my_variable2="abc"):
  #Function code

//Calling it
my_function_name(21)
my_function_name(21, "def")

Return values

def my_function_name():
  return 21

//Calling it
return_value = my_function_name()
Multiple return values
def my_function_name():
  return 21, "abc", 55

//Calling it
return_value_1, return_value_2, return_value_3 = my_function_name()
Using a dictionary for multiple return values
#In the function:
    if something == True:
        return_values = {}
        return_values['Something1'] = "abc"
        return_values['Something2'] = "def"
        return_values['Something3'] = "ghi"
        return return_values

    return False

#Calling it
    return_value = my_function(camera_serial_number)
    if return_value != False:
        #### = return_value['Something2']

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *