NumPy Version
easynumpy_basicsImplement numpy_version().
Return the installed NumPy version as a string — the value available as
np.__version__. (For exploring, np.show_config() prints the full build
configuration, but this function only needs to return the version string.)
Your solution
Edit numpy_version and run the real pytest suite in your browser — no install required. Your code is saved locally.
Loading the Python runtime (first run only)…
Hints
Hint 1
NumPy exposes its version as np.__version__.