>>> t1 = [1, 2] >>> t2 = t1.append(3) >>> t1 [1, 2, 3] >>> t2 None 转载于:https://www.cnblogs.com/sea-stream/p/10135944.html