Skip to content

Home

Initialize 2D list

Initializes a 2D list of given width and height and value.

def initialize_2d_list(w, h, val = None):
  return [[val for x in range(w)] for y in range(h)]

initialize_2d_list(2, 2, 0) # [[0, 0], [0, 0]]

More like this

Start typing a keyphrase to see matching snippets.