Learn practical skills, build real-world projects, and advance your career

Numpy Functions

Numpy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays.

  • np.hsplit
  • np.transpose
  • np.sort
  • np.lstrip
  • np.squeeze

The recommended way to run this notebook is to click the "Run" button at the top of this page, and select "Run on Binder". This will run the notebook on mybinder.org, a free online service for running Jupyter notebooks.

!pip install jovian --upgrade -q
import jovian
jovian.commit(project='numpy-array-operations')
[jovian] Attempting to save notebook.. [jovian] Updating notebook "iceflamer47/numpy-array-operations" on https://jovian.ml/ [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/iceflamer47/numpy-array-operations

Let's begin by importing Numpy and listing out the functions covered in this notebook.