Project 2: Constants Explorer
Scientific Computing
Builds on these lessons
Current Task
Objective
SciPy is organized into submodules you import individually, like scipy.constants, scipy.optimize, or scipy.stats.
Task: import the constants submodule and print the value of pi.
index.py
from scipy import constants
print(constants.pi)
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview