Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
Line 20: Line 20:
* [http://fperez.org/code/index.html Fernando Perez page on Python]
* [http://fperez.org/code/index.html Fernando Perez page on Python]
* [[Interfacing C++ and Python]]
* [[Interfacing C++ and Python]]
* [[Fitting data with python]]


== Tips ==
== Tips ==

Revision as of 15:13, 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>