diff --git a/notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb b/notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb index e46b5d2..e255de5 100644 --- a/notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb +++ b/notebooks/05-Functions-and-Modules/05.07-Positional-and-Keyword-Arguments.ipynb @@ -209,7 +209,7 @@ "function(**keyword_dict)\n", "```\n", "\n", - "Where ```function``` is the name of the function and ```keyword_dict``` is the name of the dictionary containing keywords and values preceded by the double ampersand ```**``` character. Note that the keywords assigned as keys in a dictionary must be surrounded by quotes ``` ' ' ```. An example of using a dictionary to pass keyword arguments to the ```complex()``` function is below:" + "Where ```function``` is the name of the function and ```keyword_dict``` is the name of the dictionary containing keywords and values preceded by the double asterisk ```**``` character. Note that the keywords assigned as keys in a dictionary must be surrounded by quotes ``` ' ' ```. An example of using a dictionary to pass keyword arguments to the ```complex()``` function is below:" ] }, {