CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 06:27:02 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20110812004019
location: https://web.archive.org/web/20110812004019/https://wiki.python.org/moin/ConceptualRoadmap
server-timing: captures_list;dur=0.458820, exclusion.robots;dur=0.017142, exclusion.robots.policy;dur=0.008062, esindex;dur=0.010109, cdx.remote;dur=8.475069, LoadShardBlock;dur=315.876199, PetaboxLoader3.datanode;dur=46.742398, PetaboxLoader3.resolve;dur=197.252609
x-app-server: wwwb-app219
x-ts: 302
x-tr: 348
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 17 Jul 2025 06:27:03 GMT
content-type: text/html; charset=utf-8
x-archive-orig-date: Fri, 12 Aug 2011 00:40:20 GMT
x-archive-orig-server: Apache/2.2.16 (Debian)
x-archive-orig-vary: Cookie,User-Agent,Accept-Language
x-archive-orig-set-cookie: MOIN_SESSION_80_ROOT_moin=ece0638a6e7cd7f849951dc3277b35a210588a60; expires=Fri, 12-Aug-2011 01:40:00 GMT; Max-Age=3600; Path=/
x-archive-orig-content-length: 9617
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 12 Aug 2011 00:40:19 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 15 Jul 2007 13:56:50 GMT", ; rel="prev memento"; datetime="Sat, 08 Dec 2007 11:02:56 GMT", ; rel="memento"; datetime="Fri, 12 Aug 2011 00:40:19 GMT", ; rel="next memento"; datetime="Mon, 26 Oct 2020 19:53:21 GMT", ; rel="last memento"; datetime="Sat, 20 Jul 2024 23:18:09 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: WPO-20110812003648-crawl438/WPO-20110812003648-01650.warc.gz
server-timing: captures_list;dur=0.733610, exclusion.robots;dur=0.026232, exclusion.robots.policy;dur=0.012480, esindex;dur=0.015948, cdx.remote;dur=65.338155, LoadShardBlock;dur=530.326018, PetaboxLoader3.datanode;dur=340.566285, PetaboxLoader3.resolve;dur=301.152414, load_resource;dur=153.501246
x-app-server: wwwb-app219
x-ts: 200
x-tr: 798
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
ConceptualRoadmap - PythonInfo Wiki
User
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)