449 B
449 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 generatehrows where each is a list with lengthh, initialized withval. - If
valis not provided, default toNone.
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]]