I had a python dict like this:
{'1' : {'1': {'A' : 34, 'B' : 23, 'C' : nan, 'D': inf, ...} ....} ....}
For each "letter" key I had to calculate something, but I obtained values like inf or nan and I need to remove them. How could I do that?
My first tried was to "cut" such values, i.e., to return just values between 0 and 1000 but when I did this, I got a dict with empty values:
{'1' : {'1': {'A' : 34, 'B' : 23, 'C' : {}, 'D': {}, ...} ....} ....}
perhaps there is a better solution, please help!!!!
This is part of my code, (Q and L are other dict that have the info that I need to calculate):
for e in L.keys():
dR[e] = {}
for i in L[e].keys():
dR[e][i] = {}
for l, ivalue in L[e][i].iteritems():
for j in Q[e].keys():
dR[e][i][j] = {}
for q, jvalue in Q[e][j].iteritems():
deltaR = DeltaR(ivalue, jvalue) #this is a function that I create previously
if (0 < deltaR < 100):
dR[e][i][j] = deltaR
nanandinf? Are they strings? – urschrei Sep 1 '11 at 17:43float('inf')– hop Sep 1 '11 at 20:10