Learn practical skills, build real-world projects, and advance your career
maListe = ['a','b','c','d']
maListe
['a', 'b', 'c', 'd']
maListe[0]
'a'
maListe[3]
'd'
maListe[10]
--------------------------------------------------------------------------- IndexError Traceback (most recent call last) <ipython-input-118-1d9439e7f574> in <module>() ----> 1 maListe[10] IndexError: list index out of range