list object has no attribute items
This error message usually occurs when you try to call the 'items' method on a list object. The 'items' method is a dictionary method and can only be called on dictionary objects.
For example, if you have a list and you try to call the 'items' method on it:
my_list = [1, 2, 3]
my_list.items()
You will get the error message: "'list' object has no attribute 'items'"
To fix this error, make sure you are calling the 'items' method on a dictionary object, not a list object.
原文地址: http://www.cveoy.top/t/topic/eUFt 著作权归作者所有。请勿转载和采集!