关于Python元组的描述,正确的是? ( )
元组创建后可以使用tup[索引]=值修改元素
元组与列表一样支持append()和insert()方法
元组一旦确立,它的元素不可修改。
代码t=(1,2); t[1]=3能正确将元组改为(1,3)