SciPy

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:

.pelle-btn { width:180px; border-radius:5px; } .pelle-btn.x2:link,.pelle-btn.x2:visited{ background-color:#96D4D4; color:#000; } .pelle-btn.x3:link,.pelle-btn.x3:visited{ background-color:#FFC0C7; color:#000; } .pelle-btn:link,.pelle-btn:visited { background-color:#D9EEE1; color:#000; } .pelle-btn:hover,.pelle-btn:active { background-color:#b9dfc7!important; } .pelle-btn.x2:hover,.pelle-btn.x2:active { background-color:#5cbcbc!important; } .pelle-btn.x3:hover,.pelle-btn.x3:active { background-color:#ff808e!important; } .pelle-divider { width:50%; border-right:2px solid #D9EEE1; font-size:10px; } .pelle-divider.x2 { border-right:2px solid #96D4D4; } .pelle-divider.x3 { border-right:2px solid #FFC0C7; }

Learning by Quiz Test

Test your SciPy skills with a quiz test.

Learning by Exercises

SciPy Exercises

Exercise:

Insert the correct syntax for printing the kilometer unit (in meters):

print(constants.);

Start the Exercise

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)
Click on the "Try it Yourself" button to see how it works.