how to add array and array in python

Solutions on MaxInterview for how to add array and array in python by the best coders in the world

showing results for - "how to add array and array in python"
Norma
03 Aug 2020
1capitals = ['A', 'B', 'C']
2lowers = ['a', 'b', 'c']
3
4alphabets = capitals + lowers