# Define a default value to the variable.
def function(required_variable, optional_variable = "1"):
#*args makes it so that you can use any amount of variables
def function(variable1, variable2, *args):
#for example the print function can start with: def print(*args)