Dictionary key error python?
-
Hi I get the error "Key Error: 'tempMax'" Can anyone tell what the problem is with the following code: def catagorise(self, day, cat, f): self.features.setdefault(cat,{f:{'high':… if f == 'tempMean': if day.tempMean > 15.0: self.features[cat][f]['high']+=1 elif day.tempMean >8.0 and day.tempMean < 15.0: self.features[cat][f]['mid']+=1 elif day.tempMean <=8.0: self.features[cat][f]['low']+=1 if f == 'tempMax': if day.tempMax > 15.0: self.features[cat][f]['high']+=1 elif day.tempMax >8.0 and day.tempMax < 15.0: self.features[cat][f]['mid']+=1 elif day.tempMax <=8.0: self.features[cat][f]['low']+=1 A day is an object which has variables such as mean temperature, max temperature etc. Cat is the catagory which it will be put into e.g 'Fog', 'Rain', 'Snow', 'None' and f is the feature to check e.g. 'tempMax' The features dictionary is defined when the class is created. How do I get the dictionary to add the keys and values automatically?
-
Answer:
oh my god it's HORRIBLE I don't see 'tempmax' used as a key anywhere in that code, I think it's cropped out of ' self.features.setdefault(cat,{f:{'high…
Sam at Yahoo! Answers Visit the source
Related Q & A:
- Why different key exhange techniques for SSL key exchange?Best solution by Information Security
- How to add primary key from multiple table as a foreign key in a table in sql server 2008?Best solution by stackoverflow.com
- How to verify a JWT using python PyJWT with public key?Best solution by Stack Overflow
- How to delete an entry from a dictionary in Python?Best solution by Stack Overflow
- How do you take the flip key blade out of a vw key fob?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.