for r, c in [ (k, color_names[shape_c[k]]) for k in range(nb) ]:
s += [ f'there is {c}' ]
- if shape_i[r] >= height - height/4: s += [ f'{c} bottom' ]
- if shape_i[r] < height/4: s += [ f'{c} top' ]
- if shape_j[r] >= width - width/4: s += [ f'{c} right' ]
- if shape_j[r] < width/4: s += [ f'{c} left' ]
+ if shape_i[r] >= height - height//3: s += [ f'{c} bottom' ]
+ if shape_i[r] < height//3: s += [ f'{c} top' ]
+ if shape_j[r] >= width - width//3: s += [ f'{c} right' ]
+ if shape_j[r] < width//3: s += [ f'{c} left' ]
for t, d in [ (k, color_names[shape_c[k]]) for k in range(nb) ]:
if shape_i[r] > shape_i[t]: s += [ f'{c} below {d}' ]