| 1 | initial version |
For (a) you can use 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)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.