I have three lists containing different pattern of values. This should append specific values only inside a single dictionary based on some if condition.I have tried the following way to do so but i got all the values from the list.
class_list = [1,2,3,4,5,6]boxes = [[0.1,0.2,0.3,0.4],[0.5,0.7,0.8,0.9],[0.7,0.9,0.4,0.2],[0.9,0.7,0.6,0.3],[0.9,0.14,0.6,0.3],[0.9,0.7,0.6,0.13]]scores = [0.98,0.87,0.97,0.96,0.94,0.92]k=1;data = {}for a in scores:for b in boxes:for c in list:if a >= 0.98:data[k+1] = {"score":a,"box":b, "class": c } ;k=k+1;
print("Final_result",data)