在写python脚本时遇到AttributeError: 'NoneType' object has no attribute 'append'
self.alldata.append((elapsed_time, launched_time))
把a = a.append(b)改为a.append(b)后问题解决。
原因:append会修改a本身,并且返回None。不能把返回值再赋值给a。
在写python脚本时遇到AttributeError: 'NoneType' object has no attribute 'append'
self.alldata.append((elapsed_time, launched_time))
把a = a.append(b)改为a.append(b)后问题解决。
原因:append会修改a本身,并且返回None。不能把返回值再赋值给a。