In Python what is the difference between Array and List

683    Asked by CarlPaige in Python , Asked on Jul 13, 2021

I am new to python don’t know difference between array and list python?

Answered by Gloria Holl

Lists and arrays are used in Python to store data(any data type- strings, integers etc), both can be indexed and iterated also. The difference between lists and arrays is the functions that you can perform. For example when you want to divide an array by 4, the result will be printed on request but in case of a list, python will throw an error message. Here's how it works: Arrays need to be declared whereas lists do not need declaration because they are a part of Python's syntax. This is the reason lists are more often used than arrays. But in case you want to perform some arithmetic function to your list, one should go with arrays instead. If you want to store a large amount of data, then you should consider arrays because they can store data very compactly and efficiently.

Here we have some more pinpoint to understand difference between array and list python

Lists 

Python lists are very flexible and can hold arbitrary data.

Lists are a part of Python’s syntax, so they do not need to be declared first. Arrays 

Python arrays are just a thin wrapper on C arrays.  

Arrays need to first be imported, or declared, from other libraries (i.e. numpy).



Your Answer

Interviews

Parent Categories