python/libxml2dom questions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bruce

    #1

    python/libxml2dom questions

    hi paul...

    in playing around with the test python app (see below) i've got a couple of
    basic questions. i can't seem to find the answers via google, and when i've
    looked in the libxml2dom stuff that i downloaded i didn't see answers
    either...

    for the list in the "for label in d.xpath" how can i find out the size of
    the list???? a simple/basic question, but it's driving me up a wall!!!

    also, how can i determine what methods are available for a libxml2dom
    object?

    thanks...

    -bruce


  • Paul McGuire

    #2
    Re: python/libxml2dom questions

    "bruce" <bedouglas@eart hlink.netwrote in message
    news:mailman.77 00.1151815090.2 7775.python-list@python.org ...
    hi paul...
    >
    in playing around with the test python app (see below) i've got a couple
    of
    basic questions. i can't seem to find the answers via google, and when
    i've
    looked in the libxml2dom stuff that i downloaded i didn't see answers
    either...
    >
    for the list in the "for label in d.xpath" how can i find out the size of
    the list???? a simple/basic question, but it's driving me up a wall!!!
    >
    I'm at a loss. Python ships with sample code. libxml2dom ships with sample
    code. Somewhere in there must be code that evaluates the length (hint) of a
    list.

    What search terms are you googling for? The 3rd link returned from Google,
    searching for "python list size" is this one.

    Learn Python data structures and algorithms with examples covering lists, dictionaries, heaps, graphs, sorting, recursion, and performance tradeoffs.


    Yes, this is a simple/basic question. It is so simple/basic, that it gets
    discussed in just about every Python tutorial within the first 3 pages.
    also, how can i determine what methods are available for a libxml2dom
    object?
    Didn't I post a message earlier describing dir and help? You need to do
    some basic reading, man!


    -- Paul
    Give a man a fish and you feed him for a day;
    give a man a fish every day and you feed him for the rest of his life.


    Comment

    • Barry Kelly

      #3
      Re: python/libxml2dom questions

      "bruce" <bedouglas@eart hlink.netwrote:
      also, how can i determine what methods are available for a libxml2dom
      object?
      Have you tried dir(object)? It works great on the command-line
      reply-eval-print loop.

      -- Barry

      --

      Comment

      • Stefan Behnel

        #4
        Re: python/libxml2dom questions

        bruce wrote:
        in playing around with the test python app (see below) i've got a couple of
        basic questions. i can't seem to find the answers via google, and when i've
        looked in the libxml2dom stuff that i downloaded i didn't see answers
        either...
        >
        for the list in the "for label in d.xpath" how can i find out the size of
        the list???? a simple/basic question, but it's driving me up a wall!!!
        >
        also, how can i determine what methods are available for a libxml2dom
        object?
        Obvious question: Why don't you use lxml? It's pretty well documented.



        For the rest of the questions: please read the Python tutorial on python.org.
        It's very helpful for beginners.

        Stefan

        Comment

        Working...