Christian Markwart Hoeppner wrote: > I just noticed that it needs an iterable ot two-tuples. I wonder if > there's a way to automate the creation of such a sequence, when I need a > numbered sequence. Something like "for i in range(): list.push((i,i))" > or so? I'm pretty new to python :)
Perhaps [(i,i) for i in range(5)] is what you want. L. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---