x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)

튜플은 불변이라했는데 막줄은 어떻게 가능함??