在字典中添加数组,在更多数组中。
我问了一个问题,Jakebird451 帮助了我。但我现在有很多问题。
fruits = [{
'name':"apple",
'color':["red","green"],
'weight':1
}, {
'name':"banana",
'color':["yellow","green"],
'weight':1
}, {
'name':"orange",
'color':"orange",
'weight':[1,2]
}, {
'name':"pear",
'color':"orange",
"size" : [
{
"weight" : 4,
"mass" : 1.6
},
{
"weight" : 4,
"mass" : 2
},
{
"weight" : 4,
"mass" : 2.5
}
]
}]
如果有另一个字典和另一个数组怎么办?我如何使用这个函数来获得重量和质量?
def findCarByColor(theColor):
array=[]
for x in carList:
if theColor in x['Color']:
array.append(x['name']+" "+x['weight'])
return array
print findit2("red")