choisir un element dans un tableau d'objet code example
Example 1: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']
Example 2: python tableau
l=10*[0]
print(l)
for i in range(len(l)):
l[i]=10*[0]
print(l)
l[0][0]=1
print(l)
l[0][1]=2
print(l)
Example 3: python tableau
>>> liste = list(range(1, 21))
>>> print([i for i in liste if i % 3 == 0])
[3, 6, 9, 12, 15, 18]
Example 4: tableau javascript
console.log(arr.0); // erreur de syntaxe