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