Hello,
I am new to XML parsing.Could you kindly tell me whats the
problem with the following code:
import xml.dom.minidom
import xml.parsers.expat
document = """LettermanisbetterthanJayLeno"""
# 3 handler functions
def start_element(name, attrs):
print 'Start element:', name, attr
Thanks ! it worked !
On Wed, Apr 2, 2008 at 1:31 AM, Konstantin Veretennicov <
[EMAIL PROTECTED]> wrote:
> On Tue, Apr 1, 2008 at 10:42 PM, Alok Kothari <[EMAIL PROTECTED]>
> wrote:
>
> > Hello,
> > I am new to XML parsing.Could you kindly tell