@@ -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 )
@@ -4354,14 +4354,14 @@ None
43544354{}
43554355```
43564356
4357- # ##Thinks to Remember(args)
4357+ # ##Things to Remember(args)
43584358
435943591 . Functions can accept a variable number of positional arguments by using```* args``` in thedef statement.
436043602 . You can use the itemsfrom a sequenceas the positional argumentsfor a functionwith the```* ``` operator.
436143613 . Using the```* ``` operatorwith a generator may cause your program to run out of memoryand crash.
436243624 . Adding new positional parameters to functions that accept```* args``` can introduce hard- to- find bugs.
43634363
4364- # ##Thinks toremember (kwargs)
4364+ # ##Things toRemember (kwargs)
43654365
436643661 . Function arguments can be specified by positionor by keyword.
436743672 . Keywords make it clear what the purpose of each argumentis when it would be confusingwith only positional arguments.