t316.py 49 B

1234
  1. x = ["hello"]
  2. y = list(x)
  3. x[0] = "hi"
  4. print y[0]