Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
Line 18: Line 18:
== Miscellaneous ==
== Miscellaneous ==


* [http://fperez.org/code/index.html Fernando Perez page on Python]
* [[Interfacing C++ and Python]]
* [[Interfacing C++ and Python]]



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