Difference between revisions of "Python"
From LPTMS Wiki
m (→Miscellaneous) |
|||
Line 5: | Line 5: | ||
* [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] | * [http://scipy-lectures.github.com Getting started with scipy] | ||
+ | * [http://www.unixgarden.com/index.php/programmation/python-comme-langage-scientifique python comme langage scientifique] | ||
== Libraries == | == Libraries == |
Revision as of 11:58, 2 November 2011
Contents
documentation
- Official website
- Dive into Python
- euroscipy (scientific python community)
- Getting started with scipy
- python comme langage scientifique
Libraries
Miscellaneous
Tips
- adding a path to a directory containing your module files
import sys sys.path += [ "/home/username/bin/Python" ]