Python проверка существования ключа

Feb 07, 2017 11:53


Originally published at ЖЗГ. You can comment here or there.

Для того чтобы подобный код:

if child_of_root.attrib["BlockType"]=="domain":
не выдавал ошибок при отсутствии ключа, лучше пользоваться такой конструкцией:

if "blockType" in child_of_root.attrib: if child_of_root.attrib["BlockType"]=="domain":

python

Previous post Next post
Up