목차 우선 mutable은 변할 수 있는, immutable 수정할 수 없는, 변할 수 없다는 뜻을 가진다. 파이썬에서 비슷한 모습을 하고 있는 타입이 list와 tuple이다. list는 mutable하고, tuple은 immutable하다. 그래서 메소드를 쓸 때 차이점이 있는데 이를 살펴보도록 하자. 1. 인덱스값 변경 불가! # create a list and a tuple containing the same elements my_list = [1, 2, 3] my_tuple = (1, 2, 3) # modify the first element of the list my_list[0] = 4 print(my_list) # Output: [4, 2, 3] # try to modify the firs..