for 문은 무한 루프 되는거 알겠는데 내포는 왜 무한루프 안됨?? box = [[1, 1]]for a in box: box.append([a[0], a[1] -1 ])box = [[a[0], a[1] -1 ] for a in box]
댓글 0