append 注意事项

>>> t1 = [1, 2]
>>> t2 = t1.append(3)
>>> t1
[1, 2, 3]
>>> t2
None

原文地址:https://www.cnblogs.com/sea-stream/p/10135944.html