Comment ajouter un tableau et un tableau en python
capitals = ['A', 'B', 'C']
lowers = ['a', 'b', 'c']
alphabets = capitals + lowers
Water Coder
capitals = ['A', 'B', 'C']
lowers = ['a', 'b', 'c']
alphabets = capitals + lowers