Как добавить массив и массив в Python

capitals = ['A', 'B', 'C']
lowers = ['a', 'b', 'c']

alphabets = capitals + lowers
Water Coder