data = None
data.append("new item")AttributeError: 'NoneType' object has no attribute 'append'
data = []
data.append("new item")Tried to call append on None.
- Related case: https://pyai.io/en/python/basic/lists/
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
data = None
data.append("new item")AttributeError: 'NoneType' object has no attribute 'append'
data = []
data.append("new item")Tried to call append on None.