I've been stumped for the past few hours trying to figure what is going wrong and causing this Key error in this line of code:
path = meta_entry['path'].strip('/'),
Can anyone please explain why this is happening.
|
I've been stumped for the past few hours trying to figure what is going wrong and causing this Key error in this line of code:
Can anyone please explain why this is happening. |
||||
|
From exception KeyError
For example:
So, try to print the content of
or you can do
|
|||||||||||
|
|
I fully agree with the Key error comments. You could also use the dictionary's get() method as well to avoid the exceptions. This could also be used to give a default path rather than
|
|||||
|
|
Yes, it is most likely caused by non-exsistent key. In my program, I used setdefault to mute this error, for efficiency concern. depending on how efficient is this line
I am new to Python too. In fact I have just learned it today. So forgive me on the ignorance of efficiency. In Python 3, you can also use this function,
It is said that it will never raise a key error. |
||||
|
|
Key errorgenerally means thekeydoesn't exist. So,are you sure 'path' exist.? – RanRag Apr 12 '12 at 2:13meta_entryand ensure the key you want exists. – Makoto Apr 12 '12 at 2:14