All checks were successful
continuous-integration/drone/push Build is passing
11 lines
151 B
Python
11 lines
151 B
Python
>>> conteneur = [1, 2, 3, 5]
|
|
>>> conteneur.append("a")
|
|
>>> print(conteneur)
|
|
|
|
|
|
>>> conteneur.remove(1)
|
|
>>> print(conteneur)
|
|
|
|
|
|
>>> conteneur + conteneur
|