Concept Flow - NumPy array vs Python list performance
Create Python list with numbers
Create NumPy array with same numbers
Measure time for sum with Python list
Measure time for sum with NumPy array
Compare times
Show which is faster
We create a list and a NumPy array with the same numbers, measure how long it takes to sum each, then compare the times to see which is faster.