NumPy (Numerical Python) is the fundamental package for scientific computing in Python. It provides:
- N-dimensional array object (ndarray)
- Mathematical functions for array operations
- Tools for working with large datasets
import numpy as np # Standard import convention
# Create a simple array
arr = np.array([1, 2, 3, 4, 5])
print("Array:", arr)
print("Type:", type(arr))