Project 1: SciPy Version Check
Scientific Computing
Builds on these lessons
Current Task
Objective
SciPy builds on NumPy to add specialized scientific computing tools: optimization, statistics, spatial algorithms, and more.
Task: import scipy and print its version.
index.py
import scipy
print(scipy.__version__)
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview
← Previous
Next →