numbering variables

Fredrik Lundh fredrik at pythonware.com
Mon Mar 28 08:14:59 EST 2005


"remi" <remi at non.com> wrote:
> I want to store each item of mylist in a variable (and after "xmlize" it little by little).

why not just process the items in the list?

    for item in mylist:
        print tex2xml(item)

</F> 






More information about the Python-list mailing list