b=([1,2],2,3) print(id(b),b) b[0]+=[3] print(id(b),b) b的情形改变list的长度为什么会引起tuple报错?我打印发现用append和+=都没有改变list的id ,+=是在原有列表做改动,为什么用+=还会报错请回复,谢谢! 查看完整描述