Python Forum
the meaning of ,*, in documentation - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: the meaning of ,*, in documentation (/thread-23484.html)



the meaning of ,*, in documentation - Skaperen - Jan-01-2020

i know i asked this long ago, but i never did get an answer. in the specification of many functions and methods it gives a ,*, in the list of arguments. i cannot find any description of what that means. i have been ignoring it and had success, anyway, but this worries me and i am still curious. i tried to search for my old thread but it seems the search means can't handle ,*,.


RE: the meaning of ,*, in documentation - buran - Jan-02-2020

All arguments after * are mandatory keyword arguments. For more info check PEP3102 Keyword-only arguments
Note, when I say "mandatory", I mean that IF you want to supply any of them it should be as keyword argument, not that it's mandatory to supply them.