Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python - 올바른 방법으로 2D 배열/목록 사용

<시간/>

Python은 2차원 목록/배열을 생성하는 다양한 방법을 제공합니다. 그러나 이러한 방법의 차이점은 추적하기가 매우 어려울 수 있는 코드에서 복잡함을 유발할 수 있기 때문에 반드시 알아야 합니다.

예시

rows, cols = (5, 5)
arr = [[0]*cols]*rows
#lets change the first element of the 1st row to 1 & print the array
arr[0][0] = 1
for row in arr:
   print(row)
arr = [[0 for i in range(cols)] for j in range(rows)]
#again in this new array lets change the 1st element of the first row
# to 1 and print the array
arr[0][0] = 1
for row in arr:
   print(row)

출력

[1, 0, 0, 0, 0]
[1, 0, 0, 0, 0]
[1, 0, 0, 0, 0]
[1, 0, 0, 0, 0]
[1, 0, 0, 0, 0]
[1, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]
[0, 0, 0, 0, 0]