Fix Python – Why doesn’t a python dict.update() return the object?
I ‘m trying to do :
award_dict = {
“url” : “http://facebook.com”,
“imageurl” : “http://farm4.static.flickr.com/3431/3939267074_feb9eb19b1_o.png”,
“count” : 1,
}
def award(name, count, points, desc_string, my_size, parent) :
if my_size > count :
a = {
“name” : name,
“description” : desc_string % coun….