In the python documentation, tutorial section(https://docs.python.org/3/tutorial/controlflow.html#more-on-defining-functions), an example shows use of formal parameters. The function cheesecake is called without using keyword arguments but I want to know how to call the function using keyword arguments like -
cheesecake(kind = "Limburger", arguments = (tuple), keywords = {dictionary})
How should I do this?