⚡ 1️⃣ Contiguous memory (locality of reference)
Python list: Each element is a separate Python object, stored in different memory locations. The list holds pointers to those objects.
NumPy array: The data is stored in a single, contiguous block of ...