Actions
Python notes¶
- Google python tutorial
 - Python Style Guide
 - Python Coding Standards
 - http://blog.dispatched.ch/2011/06/12/how-to-become-a-proficient-python-programmer/
 - http://lucumr.pocoo.org/2011/7/9/python-and-pola/
 - clean python code
 
Debugging¶
- print out the stack trace after an exception is caught:
import traceback one, two, tb = sys.exc_info() traceback.print_tb(tb) 
Updated by Amber Herold about 13 years ago · 5 revisions