Difference between revisions of "Python"
From LPTMS Wiki
m (→Tips) |
|||
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
Contents
documentation
- Official website
- Dive into Python
- euroscipy (scientific python community)
- Getting started with scipy
- Python comme langage scientifique
- Python et le C
Libraries
- iPython
- Standard Library
- SciPy - NumPy
- Matplotlib
- SymPy
- Cython
- PyTables
- Modular toolkit for Data Processing
Miscellaneous
- Fernando Perez page on Python
- Interfacing C++ and Python
- Fitting data with python
- 3D Scientific Data Visualization and Plotting
Tips
- adding a path to a directory containing your module files
import sys sys.path += [ "/home/username/bin/Python" ]
- test whether a string has only digits or letters
str = '1321' str.isdigit() # returns True/False str.isalpha() # returns True/False