노는게 제일 좋습니다.
python two-dimensional array 본문
reference this post.
http://snowple.tistory.com/270
Using python, we can declare two-dimensional array like this.
a=[ [0 for i in range(10)] for j in range(10) ] a[1][3] = 1 num=0 |
This code says
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0] |
( bold and color of '1' doesn't appear in IDLE. )
'Python > 기타 공부' 카테고리의 다른 글
tkinter grid method (0) | 2016.09.04 |
---|---|
tkinter 처음하기 (0) | 2016.09.03 |
pygame 스프라이트와 사운드 입히기 (5) | 2016.02.08 |
pygame 키입력으로 이동해 상자먹기 (0) | 2016.02.07 |
이벤트 받아 움직이며 상자 먹기 (0) | 2016.02.07 |
Comments