Getting started with Python: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
No edit summary
imported>Jesstess
No edit summary
Line 14: Line 14:
* [[OSX text editor|OS X]]
* [[OSX text editor|OS X]]
* [[Linux text editor|Linux]]
* [[Linux text editor|Linux]]

=== Goal #3: practice starting and exiting Python ===

Most tutorials will have you do a lot of learning and practicing at a Python prompt (this is "interactive" because you are typing the code and hitting enter to run it yourself, instead of running it from a file). So let's practice starting and exiting Python:

* [[Windows interactive Python|Windows]]
* [[OSX interactive Python|OS X]]
* [[Linux interactive Python|Linux]]

Revision as of 01:13, 8 February 2012

Goal #1: Install Python

This section has instructions for installing Python and running Python from a command prompt.

Goal #2: prepare a text editor

In addition to being able to run Python, we want to have good text editor for writing Python code. If you have a preferred text editor for writing code, feel free to skip this step!

Goal #3: practice starting and exiting Python

Most tutorials will have you do a lot of learning and practicing at a Python prompt (this is "interactive" because you are typing the code and hitting enter to run it yourself, instead of running it from a file). So let's practice starting and exiting Python: