Keyword Arguments are the Arguments that are passed to a function by their name. For example, in the following function call:
def func(x, y):
pass
func(x=1, y=2)
x=1
is the first keyword argument and y=2
is the second keyword argument.
Note: Keyword Arguments can be passed in any order. For example,
func(y=2, x=1)
is valid.