Snippets tagged “positional-arguments”
1 snippet uses this tag.
- What does ** (double star/asterisk) and * (star/asterisk) do for parameters?Python
In Python, the double star (**) is used to denote an "unpacking" operator, which allows you to unpack a dictionary or other iterable data type into keyword arguments in a function call.