Sayth Renshaw <flebber.c...@gmail.com> writes:
> ...
> Can I ask is there something obvious wrong, i have left the commented other 
> versions in they "work" in that they all produce the same output the print 
> whole file.
>

The code below is obviously wrong - it is surprising that you get
anything other than an exception. See comments below inserted into
your code.

> def parseXML():
> ...
>             result = etree.tostring(tree.getroot(), pretty_print=True)

"result" here is obviously a string.

>             for sample in result:

This means that "sample" successively hold the characters composing
the string "result".

>                 noms = (dict(zip(atts, map(sample.attrib.get, atts))))

You should get "AttributeError: str object does not have attribute `attrib`".


-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to