from gasp import * def alien_head(x, y): Circle((x-5, y-5), 35, filled=True, color=color.GREEN) Circle((x-5, y+15), 5, filled=True, color=color.BLACK) Circle((x-15, y+5), 5, filled=True, color=color.BLACK) Circle((x+5, y+5), 5, filled=True, color=color.BLACK) Circle((x-5, y-5), 5, filled=True, color=color.BLACK) Arc((x-4, y-5), 30, 225, 315) Circle((x+23, y+37), 3, filled=True, color=color.RED) Circle((x-37, y+33), 3, filled=True, color=color.RED) Line((x+12, y+23), (x+21, y+35)) Line((x-37, y+33), (x-28, y+22)) begin_graphics(800, 560, title="Rebecca's Wallpaper", background=color.YELLOW) for row in range(42, 800, 72): for col in range(40, 560, 80): alien_head(row, col) update_when('key_pressed') end_graphics()