Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
Line 2: Line 2:


* [http://www.python.org Official website]
* [http://www.python.org Official website]
* [http://diveintopython.org/ Dive into Python]
* [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 13:04, 20 October 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>