Difference between revisions of "Python"
From LPTMS Wiki
m (→Miscellaneous) |
(→documentation) |
||
Line 2: | Line 2: | ||
* [http://www.python.org Official website] | * [http://www.python.org Official website] | ||
− | * [http://diveintopython.org | + | * [http://diveintopython.org Dive into Python] |
* [http://www.euroscipy.org euroscipy] (scientific python community) | * [http://www.euroscipy.org euroscipy] (scientific python community) | ||
+ | * [http://scipy-lectures.github.com Getting started with scipy] | ||
== Libraries == | == Libraries == |
Revision as of 14:04, 20 October 2011
Contents
documentation
- Official website
- Dive into Python
- euroscipy (scientific python community)
- Getting started with scipy
Libraries
Miscellaneous
Tips
- adding a path to a directory containing your module files
import sys sys.path += [ "/home/username/bin/Python" ]