Files
30-seconds-of-code/snippets/initialiaze_2d_list.md
2019-08-20 14:12:36 +03:00

485 B

title, tags
title tags
initialize_2d_list list,intermediate

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

Use list comprehension and range() to generate h rows where each is a list with length h, initialized with val. If val is not provided, default to None.

Explain briefly how the snippet works.

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]]