Simeon Franklin

Blog :: Python Fundamentals Resources

30 May 2011

Deprecated: see the Python Fundamentals Page instead of this post

This will just be a grab bag of extra resources and notes for my students taking the Python Fundamentals Course at Marakana. Don't forget to grab the labs.

Additional Resources

Important Basics You Should Know

Python builtin functions: see the http://docs.python.org/library/functions.html. Or


import __builtin__
dir(__builtin__)

Keywords: see the docs http://docs.python.org/reference/lexical_analysis.html#keywords. Or


import keyword
print(keyword.kwlist)

Tools

Additional Documentation Referred to in Class

Don't forget the old labs - new labs and samples coming soon!


blog comments powered by Disqus