Python Tambahkan Daftar Multidimensi Item

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