Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
mNo edit summary
Line 8: Line 8:
* [http://www.unixgarden.com/index.php/programmation/python-et-le-c Python et le C]
* [http://www.unixgarden.com/index.php/programmation/python-et-le-c Python et le C]


== Libraries ==
== Libraries and softwares ==


* [http://ipython.org iPython]
* [http://ipython.org iPython]
* [http://ipython.org/ipython-doc/dev/interactive/htmlnotebook.html the iPython notebook] (interface similar to Mathematica) use HTML to handle worksheets.
* [http://docs.python.org/library Standard Library]
* [http://docs.python.org/library Standard Library]
* [http://scipy.org SciPy] - [http://numpy.scipy.org NumPy]
* [http://scipy.org SciPy] - [http://numpy.scipy.org NumPy]

Revision as of 09:58, 24 April 2012

documentation

Libraries and softwares

Miscellaneous

Tips

  • equivalent of the C ternary operator ?: (bool ? restrue : resfalse), use a tuple

<source lang="py"> (resfalse,restrue)[bool] </source>

  • adding a path to a directory containing your module files

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

  • test whether a string has only digits or letters

<source lang="py"> str = '1321' str.isdigit() # returns True/False str.isalpha() # returns True/False </source>