0
Lists in Python are same as array?
3 Answers
+ 3
Yes, lists in Python are 'dynamical' arrays (you don't need to know their size before creating them, as with languages as C++ or Java, and you could add, remove any items you want at runtime)...
+ 1
In a way, yes.
0
Yes they are the exact same . They start the indexing from 0 . You can also create a list in a list by simply using square brackets [].