Glossary
- args
An abbreviation for positional arguments.
- keyword-only
An argument or parameter is keyword-only when the argument must be provided with the name of the corresponding parameter.
If
zis a keyword-only parameter tof(z), then the argument2can be provided asf(z=2)but notf(2).- kwargs
An abbreviation for keyword arguments.