I often find myself doing this:
for x in range(x_size):
    for y in range(y_size):
        for z in range(z_size):
            pass # do something here
Is there a more concise way to do this in Python? I am thinking of something along the lines of
for x, z, y in ... ? :
 
     
     
     
     
     
    