给定如下Python代码:
c1 = ['你','好','吗'] d1 = tuple(c1) print(d1)
['你', '好', '吗']
tuple()不能转换本身就是元组的变量为元组,所以程序不能正确执行
('你', '好', '吗')
TypeError:非预期类型错误