2012-10-03 30 views
9

Il mio programma si presenta comePython: AttributeError: oggetto 'NoneType' non ha alcun attributo 'append'

# 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) 

Quando ho eseguito questo, mi butta

AttributeError: 'NoneType' object has no attribute 'append'

Non capisco perché questo sarebbe accadere? Quando sto già creando un elenco all'inizio di ogni j

+0

possibile duplicato del [Python TkInter - AttributeError: oggetto 'NoneType' non ha alcun attributo 'ottenere'] (http://stackoverflow.com/questions/1101750/python-tkinter-attributeerror-nonetype-object-has- no-attribute-get) – UpAndAdam

risposta

25

In realtà è stato memorizzato None qui: append() cambia la lista a posto e restituisce None

item_to_bucket_list_map[i] = (item_to_bucket_list_map.get(i)).append(j) 

esempio:

In [42]: lis = [1,2,3] 

In [43]: print lis.append(4) 
None 

In [44]: lis 
Out[44]: [1, 2, 3, 4] 
+0

Questa è stata la presa, grazie per aver raccolto questo! – daydreamer

+0

@DSM appena spuntato, il 'None' non viene a causa di' get() ',' i' è presente nel dict ma il suo valore è 'None'. –

+0

@AshwiniChaudhary: hai ragione - in qualche modo ho perso il fatto che * avrebbe * ripetuto più volte. – DSM

2
[...] 
for i in range(1, items + 1): 
    j = 1 
    while i * j <= buckets: 
     if j == 1: 
      mylist = [] 
     else: 
      mylist = item_to_bucket_list_map.get(i) 
     mylist.append(j) 
     item_to_bucket_list_map[i] = mylist 
     j += 1 
    print "Item=%s, bucket=%s" % (i, item_to_bucket_list_map.get(i)) 

Il ciclo while, tuttavia, può essere semplificato in

for j in range(1, buckets/i + 1): # + 1 due to the <= 
     if j == 1: 
      mylist = [] 
     else: 
      mylist = item_to_bucket_list_map.get(i) 
     mylist.append(j) 
     item_to_bucket_list_map[i] = mylist 
Problemi correlati