SciPy Tutorial
SciPy is a scientific computation library that uses NumPy underneath.
SciPy stands for Scientific Python.
Learning by Reading
We have created 10 tutorial pages for you to learn the fundamentals of SciPy:
Learning by Exercises
Learning by Examples
In our "Try it Yourself" editor, you can use the SciPy module, and modify the code to see the result.
Example
How many cubic meters are in one liter:
from scipy import constants
print(constants.liter)
Try it Yourself »
Click on the "Try it Yourself" button to see how it works.