I have a python (python3.2) script that searches for points with a property that I want. But it has this ugly part.

for x in range(0,p):

for y in range(0,p):

for z in range(0,p):
  for s in range(0,p):
    for t in range(0,p):
      for w in range(0,p):
        for u in range(0,p):
          if isagoodpoint(x,y,z,s,t,w,u,p):
            print(x,y,z,s,t,w,u)
          else:
            pass

Is there something I can do so that it looks a bit better?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.