리스트는 값을 변경할 수 있다. 튜플은 저장된 값이 변경되지 않는다. >> clovers=('c1', 'ha2', 'cl3') >>> print(clovers [1]) ha2
>>> clovers [1]='cllllll' Traceback (most recent call last): File "<pyshell#145>", line 1, in <module> clovers [1]='cllllll' TypeError: 'tuple' object does not support item assignment >>>