Python
Default arguments, variable-length arguments and scope
Crash course on scope in functions Not all objects are accessible everywhere in a script. Scope – part ofthe program where an object or name may be accessible Global scope – defined in the main body of a script Local scope – defined inside a function Built-in scope – names Read more…