In functions, you can define a number of mandatory arguments:
def fun1(arg1, arg2, arg3):
return (arg1,arg2,arg3)
which will make the function callable only when the three arguments are given:
fun1(1, 2, 3)
and you can define the arguments as optional, by using default values:
def fun...