Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
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]
* [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 11:59, 2 November 2011

documentation

Libraries

Miscellaneous

Tips

  • adding a path to a directory containing your module files

<source lang="py"> import sys sys.path += [ "/home/username/bin/Python" ] </source>