Whats array | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Whats array

Array

20th Mar 2020, 1:41 PM
Bai Jilla
Bai Jilla - avatar
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/
20th Mar 2020, 2:11 PM
Jax
Jax - avatar
+ 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
20th Mar 2020, 3:17 PM
Tibor Santa
Tibor Santa - avatar