fork download
  1. arr_1 = [1, 2, 3, 4]
  2. arr_2 = [5, 6, 7]
  3.  
  4. print(arr_1 + arr_2)
  5.  
Success #stdin #stdout 0.03s 9636KB
stdin
8
stdout
[1, 2, 3, 4, 5, 6, 7]