[dywang@deyu zzz]$ cat tuple5.py
#!/usr/bin/python3
# coding: utf-8
tuplex = ( 32, 12, 'abc' )
listx = list(tuplex)
print("listx =", listx)
listx[1] = 99
print("listx =", listx)
[dywang@deyu zzz]$ ./tuple5.py listx = [32, 12, 'abc'] listx = [32, 99, 'abc']