Differences between revisions 58 and 59
Revision 58 as of 2008-09-18 11:20:23
Size: 3706
Editor: 220
Comment:
Revision 59 as of 2008-11-15 14:01:16
Size: 3750
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
The tutorials on this page are aimed at people who have previous experience with other programming languages (C, Perl, Lisp, Visual Basic). Also of potential interest are such related Beginners Guides as ["BeginnersGuide/Overview"] and BeginnersGuide/NonProgrammers and the tips in MovingToPythonFromOtherLanguages. The tutorials on this page are aimed at people who have previous experience with other programming languages (C, Perl, Lisp, Visual Basic). Also of potential interest are such related Beginners Guides as [[BeginnersGuide/Overview]] and BeginnersGuide/NonProgrammers and the tips in MovingToPythonFromOtherLanguages.
Line 4: Line 4:
 * [http://docs.python.org/tut/ Python Tutorial] This tutorial is part of Python's documentation set and is updated with each new release.
 * [http://diveintopython.org/ Dive Into Python] A fine tutorial by Mark Pilgrim.
 * [http://www.amazon.com/exec/obidos/tg/sim-explorer/explore-items/-/0735710910/0/101/1/none/purchase/ref=pd_sxp_r0/002-0605932-8839237 Python Essential Reference] (book) If you want a highly compressed K&R-style 'just the facts' overview, David Beazley's "Python Essential Reference" covers practically all of the language in about a hundred pages.
 * [http://en.wikibooks.org/wiki/Python_Programming Wikibook:Python Programming]
 * [http://en.wikiversity.org/wiki/Topic:Python Wikiversity:Python] The Wiki(anything) information about Python.
 * [http://www.hetland.org/python/instant-python.php Instant Python] A minimal crash course by Magnus Lie Hetland.
 * [http://www.linuxjournal.com/lj-issues/issue73/3946.html Python Programming for Beginners] A short introduction to writing command-line applications in Python by Jacek Artymiak.
 * [http://www.rexx.com/~dkuhlman/python_101/python_101.html Python 101 - Beginning Python] and [http://www.rexx.com/~dkuhlman/python_201/python_201.html Python 201 - (Slightly) Advanced Python] Two self-training courses from Dave Kuhlman. Python 101 introduces the basic data types, and 201 covers particular tasks such as parsing text and writing unit tests.
 * [http://www.wag.caltech.edu/home/rpm/python_course/ Python Short Course] A set of course slides by Richard P. Muller of Caltech that are aimed at scientific users. For example, the first example is a script to process output from a quantum chemistry simulation.
 * [http://www.poromenos.org/tutorials/python? Learn Python in 10 minutes]
 * [http://starship.python.net/crew/hinsen/ Python for Science] Course material written by Konrad Hinsen for an introduction to Python aimed at biologists.
 * [http://www.swc.scipy.org/ Software Carpentry]: lectures aimed at scientists and engineers.
 * You can find a variety of Python tutorials on [http://www.codeteacher.com/ Code Teacher].
 * [http://blog.showmedo.com/2007/03/22/get-going-with-python-1-getting-a-feel-for-the-language/ 'Getting started with Python'] blog series at ShowMeDo, includes articles on 'Python Development Environments' and 'Python Under-The-Hood'
 * [http://showmedo.com/videos/python ShowMeDo.com/videos/Python]: Over 240 Python programming screencasts, most are free, some are a part of [http://showmedo.com/club Club ShowMeDo], all will teach you about Python programming:
  * [http://showmedo.com/videos/series?name=IwrOgqPc9 Python 101 - easygui and csv] - Aimed at new/intermediate Pythonistas showing how to build a full application in Python (part of the Club)
  * [http://showmedo.com/videos/series?name=pythonOzsvaldPyNewbieSeries Python Development on XP] (9 videos, part of the Club) Aimed at new/intermediate Pythonistas
  * [http://showmedo.com/videos/series?name=pythonOzsvaldIntroToPyResourcesSeries A Guide to Python Resources on the Web] (2 videos)
  * [http://showmedo.com/videos/series?name=pythonHollandIntroToPythonSeries_german Einführung in die Programmierung mit Python] (14 videos - German)
  * [http://showmedo.com/videos/series?name=PythonWxPythonBeginnersSeries Python GUI Programming with wxPython] (3 videos)
 * [[http://docs.python.org/tut/|Python Tutorial]] This tutorial is part of Python's documentation set and is updated with each new release.
 * [[http://diveintopython.org/|Dive Into Python]] A fine tutorial by Mark Pilgrim.
 * [[http://www.amazon.com/exec/obidos/tg/sim-explorer/explore-items/-/0735710910/0/101/1/none/purchase/ref=pd_sxp_r0/002-0605932-8839237|Python Essential Reference]] (book) If you want a highly compressed K&R-style 'just the facts' overview, David Beazley's "Python Essential Reference" covers practically all of the language in about a hundred pages.
 * [[http://en.wikibooks.org/wiki/Python_Programming|Wikibook:Python Programming]]
 * [[http://en.wikiversity.org/wiki/Topic:Python|Wikiversity:Python]] The Wiki(anything) information about Python.
 * [[http://www.hetland.org/python/instant-python.php|Instant Python]] A minimal crash course by Magnus Lie Hetland.
 * [[http://www.linuxjournal.com/lj-issues/issue73/3946.html|Python Programming for Beginners]] A short introduction to writing command-line applications in Python by Jacek Artymiak.
 * [[http://www.rexx.com/~dkuhlman/python_101/python_101.html|Python 101 - Beginning Python]] and [[http://www.rexx.com/~dkuhlman/python_201/python_201.html|Python 201 - (Slightly) Advanced Python]] Two self-training courses from Dave Kuhlman. Python 101 introduces the basic data types, and 201 covers particular tasks such as parsing text and writing unit tests.
 * [[http://www.wag.caltech.edu/home/rpm/python_course/|Python Short Course]] A set of course slides by Richard P. Muller of Caltech that are aimed at scientific users. For example, the first example is a script to process output from a quantum chemistry simulation.
 * [[http://www.poromenos.org/tutorials/python?|Learn Python in 10 minutes]]
 * [[http://starship.python.net/crew/hinsen/|Python for Science]] Course material written by Konrad Hinsen for an introduction to Python aimed at biologists.
 * [[http://www.swc.scipy.org/|Software Carpentry]]: lectures aimed at scientists and engineers.
 * You can find a variety of Python tutorials on [[http://www.codeteacher.com/|Code Teacher]].
 * [[http://blog.showmedo.com/2007/03/22/get-going-with-python-1-getting-a-feel-for-the-language/|'Getting started with Python']] blog series at ShowMeDo, includes articles on 'Python Development Environments' and 'Python Under-The-Hood'
 * [[http://showmedo.com/videos/python|ShowMeDo.com/videos/Python]]: Over 240 Python programming screencasts, most are free, some are a part of [[http://showmedo.com/club|Club ShowMeDo]], all will teach you about Python programming:
  * [[http://showmedo.com/videos/series?name=IwrOgqPc9|Python 101 - easygui and csv]] - Aimed at new/intermediate Pythonistas showing how to build a full application in Python (part of the Club)
  * [[http://showmedo.com/videos/series?name=pythonOzsvaldPyNewbieSeries|Python Development on XP]] (9 videos, part of the Club) Aimed at new/intermediate Pythonistas
  * [[http://showmedo.com/videos/series?name=pythonOzsvaldIntroToPyResourcesSeries|A Guide to Python Resources on the Web]] (2 videos)
  * [[http://showmedo.com/videos/series?name=pythonHollandIntroToPythonSeries_german|Einführung in die Programmierung mit Python]] (14 videos - German)
  * [[http://showmedo.com/videos/series?name=PythonWxPythonBeginnersSeries|Python GUI Programming with wxPython]] (3 videos)

Python for Programmers

The tutorials on this page are aimed at people who have previous experience with other programming languages (C, Perl, Lisp, Visual Basic). Also of potential interest are such related Beginners Guides as BeginnersGuide/Overview and BeginnersGuide/NonProgrammers and the tips in MovingToPythonFromOtherLanguages.

BeginnersGuide/Programmers (last edited 2024-03-03 16:02:54 by MatsWichmann)

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