Project 2: Environment Version Check
Data Engineer
Builds on these lessons
Current Task
Objective
Checking which version of NumPy you have installed is the first thing worth confirming in any new environment.
Task: print NumPy's version using its __version__ attribute.
index.py
import numpy as np
print(np.__version__)
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview