afficher une valeur specifique d'une liste en python code example
Example: list in python
myList = ["Test", 419]
myList.append(10)
myList.append("my code")
print(myList)
myList = ["Test", 419]
myList.append(10)
myList.append("my code")
print(myList)