Python

From LPTMS Wiki
Revision as of 17:19, 23 November 2011 by Roux (talk | contribs) (→‎Tips)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

documentation

Libraries

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>