30秒学会 Python 片段 · 2017年9月26日

30秒学会 Python 片段 – initialize_2d_list

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.

代码实现

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