私のプログラムはPythonの:はAttributeError: 'NoneType' オブジェクトが属性
# global
item_to_bucket_list_map = {}
def fill_item_bucket_map(items, buckets):
global item_to_bucket_list_map
for i in range(1, items + 1):
j = 1
while i * j <= buckets:
if j == 1:
item_to_bucket_list_map[i] = [j]
else:
item_to_bucket_list_map[i] = (item_to_bucket_list_map.get(i)).append(j)
j += 1
print "Item=%s, bucket=%s" % (i, item_to_bucket_list_map.get(i))
if __name__ == "__main__":
buckets = 100
items = 100
fill_item_bucket_map(items, buckets)
私はこれを実行すると、なぜこれがだろう、それは
AttributeError: 'NoneType' object has no attribute 'append'
わからない私を投げのように見えていません起こる?私はすでに実際にあなたがここにNone
を格納し、各j
[Python TkInter - AttributeError: 'NoneType'オブジェクトに属性 'get'がありません。](http://stackoverflow.com/questions/1101750/python-tkinter-attributeerror-nonetype-object-has- no-attribute-get) – UpAndAdam