InterviewSolution
Saved Bookmarks
| 1. |
What are the differences between arrays and lists? |
|
Answer» An array holds the fixed number of values. The list is of variable-length – elements can be dynamically added or removed An array holds values of a single type. List in Python can hold values of a mixed data type. |
|