생활코딩/Python 제어문 - 5.2. 반복문 - 다차원배열의 처리
이번거 어려워 @_@ persons = [ ['egoing', 'seoul', 'web'], ['basta', 'seoul', 'IOT'], ['blackdew', 'Tongyeong', 'ML'], ] name, address, interest = ['egoing', 'seoul', 'web'] print(name, address, interest) for name, address, interest in persons: print(name+address+interest) # persons 에 리스트를 작성한다. 1개가 아니고 여러개의 리스트. 리스트 내에 요소(?)들을 순서에 맞게 이름을 부여해준다. 다음에는 이 이름으로 요소들을 불러낼 수 있다. for 이름, 주소, 관심사로 지정된 persons 안..