12
A minor headache for a beginner coder
(lemmy.dbzer0.com)
Welcome to the Python community on the programming.dev Lemmy instance!
Past
November 2023
October 2023
July 2023
August 2023
September 2023
Eww eww eww, I have a good one!
function argument:
params vs **params
Assume both are the same Mapping.
The former can update in-place. The later, nope.
If the function is a generic function or one of the overloads. Wait what's that? It's the term used by functools.singledispatch to describe the fallback function when no overload function handles the case.
Anyway
Any param to either singledispatch generic or an overload, Whatever you throw at it, won't be in-place updatable.
which makes sense to me.
params
is passing the reference to the dict into the function. Whereas,**params
is expanding the dict into the scope of the function before calling the first line of the body.You can update the content of the former in-place, while the latter is just syntactic sugar for variadic function arguments.