[EMAIL PROTECTED] wrote:
> I just tried two loops "for" imbricated, it does'nt seems to work.

Imbricated? That's a new one on me. I just looked it up and it means
overlapping like roof tiles, edge over edge, which makes me think of
two for loops like this:

for i = 1 to 10
for j = 1 to 10
print i, j
next i
next j

This is an error in most programming languages, and syntactically
impossible in many cases too - I had to think how to do loops in BASIC
to give that example above!

What you have done is usually called 'nested' for-loops, but thanks for
introducing me to a brand new word! I shall try and use it today!

I think someone else pointed out the missing % already...

Barry


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to