Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

NUMPY NOTES

Q1: What is NumPy?


Ans: NumPy is a Python library used for working with arrays. NumPy was
created in 2005 by Travis Oliphant. It is an open-source project, and can
be used freely, NumPy stands for Numerical Python.

Q2: Why we use NumPy?

Ans: In Python we have lists that serve the purpose of arrays, but they are
slow to process. NumPy aims in providing an array object that is up to 50x
faster than traditional Python lists.

You might also like