What is the Python convention **kwargs vs **kwds vs **kw?

Kyle Finley picture Kyle Finley · Jun 22, 2011 · Viewed 10k times · Source

Is there a python naming convention for key word arguments?

Answer

Senthil Kumaran picture Senthil Kumaran · Jun 22, 2011

Nope, but normally it is named as **kwargs, but you can name it anything you want. Only thing is it should come at the last following any position args and named args.