Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
No edit summary
Line 32: Line 32:
import sys
import sys
sys.path += [ "/home/username/bin/Python" ]
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>
</source>

Revision as of 15:49, 22 November 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>

  • 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>