NumPy Version

easynumpy_basics

Implement 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.

⌘/Ctrl + ↵

Loading the Python runtime (first run only)…

Hints

Hint 1

NumPy exposes its version as np.__version__.