Differences between revisions 1 and 2
Revision 1 as of 2007-05-26 08:27:43
Size: 1039
Editor: JeffRush
Comment:
Revision 2 as of 2008-11-15 13:59:39
Size: 1039
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

A Roadmap to Programming Concepts, using Python

Here are broken out the concepts of programming with Python; essentially a list of ideas, the order in which they might be learned and where the knowledge can be gained.

(needs work)


"What mental model is necessary to understand programming?"

  • what is an algorithm?
  • that things happen in sequence
  • and can loop
  • but exceptions can be raised
  • names are bound to values
  • those values can be singles
  • or collections like lists, tuples
  • collections have subscripts, with ranges
  • strings are actually collections
  • mappings are interesting
  • programs have a start and a stop
  • they usually do some setup at the start
  • they may report some status at the stop
  • code can be carried around like a value
  • grouping code with functions reduces complexity
  • modules group code too
  • classes and objects
  • you have a choice of interpreters
    • cpython
    • ipython
    • vpython
    • ironpython
    • jython
    • stackless

ConceptualRoadmap (last edited 2008-11-15 13:59:39 by localhost)

Unable to edit the page? See the FrontPage for instructions.