10. Tuples Tuples은 세번째 Collection! List와 Dictionary에 이어서. List랑 비슷함. 순서가 변하지 않고, 0번부터 시작. But, Tuples are "immutable" list와 다르게 tuple 은 한 번 생성하면 수정할 수 없어. string 같아 >>> x = [9, 8, 7] >>> x[2] = 6 >>> print (x) [9, 8, 6] >>> y = 'ABC' >>> y[2] = 'D' Traceback: blah blah... >>> z = (5, 4, 3) >>> x[2] = 0 Traceback: blah blah... Thing not to do with tuples sort() append() reverse() => Traceback을 보게..