Keyword arguments (also known as named arguments) are arguments that need to be named specifically while calling the function. They don't require to be in any order like positional arguments.
We can define keyword arguments by adding a * as the first argument to a function. In the snippet below, we define two keyword arguments width and length, for the area()
function.
Calling the function without keyword arguments will result in an error.