[Python3] List 관련 정리
2020. 3. 11.
List List 메소드 L = ['a', 'b', 'c'] L.append('d') # 뒤에 추가 L.insert(3, 'b') # 삽입 print(L) L.remove('b') print(L) L.pop() # 뒤에서부터 pop하고 해당 element 반환 print(L) List 변수 할당 결과는 똑같이 나오는데 이는 fruits와 juice가 동일한 list를 가리키는 변수이기 때문이다. fruits = ['apple', 'grape'] juice = fruits fruits.append('orange') print(fruits) print(juice) List 복사 List 전체를 슬라이싱 하는 방법으로 복사할 수 있음 또는 copy 모듈 사용 nuts = ['almonds', 'macadami..