Support Forums
Args, kwargs, argv, etc. - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Python Programming Language (https://www.supportforums.net/forumdisplay.php?fid=32)
+---- Thread: Args, kwargs, argv, etc. (/showthread.php?tid=4784)



Args, kwargs, argv, etc. - Canoris - 02-13-2010

I want to know what the hell they are... it's annoying me because I can't find anything about what they are, and if I do I can't understand it!!! Sad

This is the closest I've gotten however:
http://docs.python.org/c-api/arg.html


RE: Args, kwargs, argv, etc. - Omniscient - 02-13-2010

This looks helpful for argv: http://homepage.mac.com/andykopra/pdm/tutorials/making_python_scripts.html

Try this for kwargs: http://stackoverflow.com/questions/1098549/proper-way-to-use-kwargs-in-python

Lastly this might do the best: http://www.saltycrane.com/blog/2008/01/how-to-use-args-and-kwargs-in-python/