Array v/s List:
- Python is not allowed the programmer to create traditional arrays for data processing.
- Python doesn’t support Arrays.
- Array is static (Size is fixed) where as Python is dynamic. This is the one reason that why python is not allowed arrays.
- In any programming language only arrays can process one dimensional, two dimensional and multi dimensional data easily using indexing.
As Python doesn’t support Arrays, we use third party modules (Numpy & Pandas) to process elements like arrays.