538 B
538 B
title, type, tags, cover, dateModified
| title | type | tags | cover | dateModified | |
|---|---|---|---|---|---|
| Initialize 2D list | snippet |
|
succulent-7 | 2020-11-02T19:28:05+02:00 |
Initializes a 2D list of given width and height and value.
- Use a list comprehension and
range()to generatehrows where each is a list with lengthh, initialized withval. - Omit the last argument,
val, to set the default value 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]]