Python中def调用结束后,会释放它内部生成的对象空间吗?例如:def test(a): aList = [0,1,2,3,4,5,6,7,8,9] aList.inster(a) aTuple = (1,2,3,4#5,6,7)teat(100)#aList的内存空间会被释放吗?求解!!