First time here? Check out the FAQ!
answered 2023-01-02 22:54:01 +0100
For (a) you can use show(*[p[i] for i in range(8)]).
show(*[p[i] for i in range(8)])
For (b), one option is to construct a graphics array:
P = graphics_array([p[i] for i in range(8)], 2, 4) # 2x4 array of the images P.save(FILENAME)