@@ -189,8 +189,8 @@ All contributions are welcome:
189189- [ Lambda Functions] ( #lambda-functions )
190190- [ Ternary Conditional Operator] ( #ternary-conditional-operator )
191191- [ args and kwargs] ( #args-and-kwargs )
192- - [ Thinks to Remember(args)] ( #thinks -to-rememberargs )
193- - [ Thinks toremember (kwargs)] ( #thinks -to-rememberkwargs )
192+ - [ Things to Remember(args)] ( #things -to-rememberargs )
193+ - [ Things toRemember (kwargs)] ( #things -to-rememberkwargs )
194194- [ Context Manager] ( #context-manager )
195195- [ with statement] ( #with-statement )
196196- [ Writing your own contextmanager using generator syntax] ( #writing-your-own-contextmanager-using-generator-syntax )
@@ -4359,14 +4359,14 @@ None
43594359{}
43604360```
43614361
4362- # ##Thinks to Remember(args)
4362+ # ##Things to Remember(args)
43634363
436443641 . Functions can accept a variable number of positional arguments by using```* args``` in thedef statement.
436543652 . You can use the itemsfrom a sequenceas the positional argumentsfor a functionwith the```* ``` operator.
436643663 . Using the```* ``` operatorwith a generator may cause your program to run out of memoryand crash.
436743674 . Adding new positional parameters to functions that accept```* args``` can introduce hard- to- find bugs.
43684368
4369- # ##Thinks toremember (kwargs)
4369+ # ##Things toRemember (kwargs)
43704370
437143711 . Function arguments can be specified by positionor by keyword.
437243722 . Keywords make it clear what the purpose of each argumentis when it would be confusingwith only positional arguments.