The document outlines a Python certification training program focused on NumPy, a core library for scientific computing in Python that provides high-performance multidimensional array objects. It compares NumPy with lists, highlighting advantages such as less memory usage and faster operations. Additionally, it covers various NumPy operations and special functions, including array manipulation and mathematical functions.
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATIONTRAINING
What is Numpy?
❑ 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.
11 12 13
8 9 10
5 6 7
1 2 3A[0,0], A[0,1], A[0,2]
A[1,0], A[1,1], A[1,2]
A[2,0], A[2,1], A[2,2]
A[3,0], A[3,1], A[3,2]
What is Multi-
dimensional
array?