2017-03-25 4 views

답변

1

append() 메서드는 목록을 수정하고 반환 값은 없음입니다. t을 보면 추가 된 항목이 표시됩니다.

t = [ [1,22] , [1,44] ]# nested list 
t.append([0,0]) 
print t