append 2d array python code example

Example 1: python append to 2d array

temp_list = [[], [], [], []]
temp_list[0].append("a1")
temp_list[1].append("a2")
temp_list[2].append("a3")
temp_list[3].append("a4")

Example 2: python add item multidimensional list

a_2d_list = [[1, 2], [3, 4]]
a_2d_list.append([5, 6])

Example 3: python append row to 2d array

new_row.append([])

Example 4: python 2d array append

arr = []
arr.append([])
arr[0].append('aa1')
arr[0].append('aa2')

Example 5: how to add elements in 2d array in python

n,m=int(input()),int(input())
   for i in range(0,n):
      for j in range(0,m):
         a[i].append(int(input()))

Tags:

Misc Example