PL/Python

파이썬 list comprehension

SweetDev 2020. 5. 29. 12:08

C = [[0 for x in range(k+1)] for x in range(n+1)]

 

n+1, k+1개의 0들이 만들어지게 된다.

!