7 items | 6 visits
A summary of my links/notes for learning the Python programming language.
Updated on Jun 02, 10
Created on May 31, 10
Category: Computers & Internet
URL:
Python for Non-Programmers
This book is used as a reference for teaching Python in MIT's intro CS course. It is a simple and concise presentation of basic programming concepts in either Python or Java. It is of higher quality than Blue Pelican Java. It defers discussion of OOP until after discussing basic programming concepts.
Beginning Python for Programmers
if __name__ ==... shown above to call a main() function when the module is run directly, but not when the module is imported by some other module.
for var in list -- is an easy way to look at each element in a list (or other collection). Do not add or remove from the list during iteration.
7 items | 6 visits
A summary of my links/notes for learning the Python programming language.
Updated on Jun 02, 10
Created on May 31, 10
Category: Computers & Internet
URL: