list_sum.py 59 B

12345
  1. # list addition
  2. a = [1,2,3]
  3. b = [4,5,6]
  4. c = a + b
  5. print(c)