Positional Arguments are the Arguments that are passed to a function by their position. For example, in the following function call:
def func(x, y):
pass
func(1, 2)
1
is the first positional argument and 2
is the second positional argument.