September 2018

3 posts from September 2018

Python *args and **kwargs

Python has a special syntax, * (single asterisk) and ** (double asterisks), that lets you pass a variable number of arguments to a function. By convention, these are written as...