Jak dodać tablicę i tablicę w Pythonie

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

alphabets = capitals + lowers
Water Coder