Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
"function(*iterable)\n",
"```\n",
"\n",
"Where ```function``` is the name of the function and ```iterable``` is the name of the iterable preceded by the ampersand ```*``` character. \n",
"Where ```function``` is the name of the function and ```iterable``` is the name of the iterable preceded by the asterisk ```*``` character. \n",
"\n",
"An example of using a list to pass positional arguments to the ```complex()``` function is below. Note the ampersand ```*``` character is included before the ```term_list``` argument."
"An example of using a list to pass positional arguments to the ```complex()``` function is below. Note the asterisk ```*``` character is included before the ```term_list``` argument."
]
},
{
Expand Down Expand Up @@ -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 asterisks ```**``` 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:"
]
},
{
Expand Down