Update initialiaze_2d_list.md

This commit is contained in:
defterade
2019-09-22 13:25:23 +02:00
committed by GitHub
parent 31762df4d8
commit c8cb89fd9d

View File

@ -8,8 +8,6 @@ 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.
```py
def initialize_2d_list(w,h, val = None):
return [[val for x in range(w)] for y in range(h)]