Comment on Learning to program (Python) the right way?Comments−jerfelix14yConsider looking at well-written Python code. Try to understand exactly how it works.Example, django source: http://code.djangoproject.com/svn/django/trunk/django/−zmitri14yReading well written code is an excellent way to do so. The source code for Tornado is also quite clear https://github.com/facebook/tornadoLook into args and *kwargs and first class functions in python.
Comments
Consider looking at well-written Python code. Try to understand exactly how it works.
Example, django source: http://code.djangoproject.com/svn/django/trunk/django/
Reading well written code is an excellent way to do so. The source code for Tornado is also quite clear https://github.com/facebook/tornado
Look into args and *kwargs and first class functions in python.