python 提示AttributeError: ✀NoneType✀ object has no attribute ✀append✀

2024-11-24 01:33:46
推荐回答(1个)
回答1:

l = l.append(b)
不能这样写。应该这样写:l.append(b)。其他几行类似。

原因:append会修改l本身,并且返回None。不能把返回值再赋值给l。