Positional / Required / Mandatory Argument in Functions


☞When the function call statement must match the number and order of arguments as defined in the function definition, this is called positional argument matching.

Example :

def add(a, b):
    c=a+b
    print(c)

#__main__
add(10,20)     #10 and 20 are positional arguments