0
Whats array
Array
2 Antworten
+ 3
Python doesn’t actually have arrays. They instead use lists. You can learn about Python lists here:
https://www.sololearn.com/learn/Python/2431/
+ 2
You can use arrays in python too, there is a library for them.
https://docs.python.org/3/library/array.html
Differences between array and list:
- all elements of an array are the same type
- arrays have a fixed size, cannot add more elements when you reach the capacity.
- arrays are much faster