[ACCEPTED]-What is the Python convention **kwargs vs **kwds vs **kw?-keyword-argument
Nope, but normally it is named as **kwargs
, but 3 you can name it anything you want. Only 2 thing is it should come at the last following 1 any position args and named args.
The convention is **kwargs
, as seen in documentation 1 and PEPs.
The key is consistency. In your personal 8 code and in the project on which you're 7 working. If I'm reading your code and see 6 you using **kwarguments
in all functions, I can calibrate 5 myself to read it fine. If you use **k
in one 4 place and **kargs
in another, that's a different 3 story.
As for conventions in Python code 2 generally, my experience is the same as 1 Senthil's - **kwargs
.
More Related questions
We use cookies to improve the performance of the site. By staying on our site, you agree to the terms of use of cookies.