# -*- coding:utf-8 -*- t = (2, 4, 2, 1) print (t) print (type(t)) M = list(t) print(type(M)) M[1]='AAA' print(M[1])