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":