Learn practical skills, build real-world projects, and advance your career
maListe1 = ['a', 3, 12, 3, 'a', 3]
maListe1.count("a")
2
maListe1.index("a")
0
maListe1.reverse()
maListe1
[3, 'a', 3, 12, 3, 'a']
maListe2 = [4,2]