[파이썬 python] list(리스트) 요소 추가/삭제/병합/수정/초기화
리스트 생성(선언) empty_list = [] list = [1, 2, 3] list2 = ['a', 'abc', 'hello world'] list3 = [1, 2, 3, 'a', 'abc', [4, 5, 6]] 리스트 요소 추가 / 삽입 list = [1, 2, 3] list.append(4) print(list) -> [1, 2, 3, 4] list.append(['a', 'b']) print(list) -> [1, 2, 3, 4, ['a', 'b']] list.insert(0, 0) print(list) -> [0, 1, 2, 3, 4, ['a', 'b']] list.insert(6, 'c') print(list) ->[0, 1, 2, 3, 4, ['a', 'b'], 'c'] 리스트 병합 (리스..
2023. 10. 20.