
November 18th, 2012, 08:38 PM
|
 |
Contributing User
|
|
|
|
|
At your operating system shell prompt, assuming you've used a standard python installation that puts the python executable onto the PATH environment,
A:> python program.py
or
$ python3 program.py
Someone else can advise you on running codes from idle or other environments
Executable scripts are another possibility.
#! /usr/bin/python
import work_horse
__________________
[code] Code tags[/code] are essential for python code!
|