Example & Tutorial understanding programming in easy ways.

What is the Difference between the List and the Array in Python ?

Basically, both list and array store multiple values.

-List is a collection of different data type, means that we can store all thing in one list

-While array is a collection of similar data type , it can not hold multiple data type.

Read More →