Game Over Moving Logo across the screen. You can just put your own x,y,size,color
from math import * from kandinsky import * from ion import * from time import * spaceL=[ " ", " ", " ", " ", " " ] spaceW=[ " ", " ", " ", " ", " " ] A=[ " 88 ", "8 8", "8888", "8 8", "8 8" ] B=[ "888 ", "8 8", "888", "8 8", "888" ] GAMEOVER=[ " 888 88 8 8 8888 88 8 8 8888 888", "8 8 8 88 88 8 8 8 8 8 8 8 8", "8 88 8888 8 8 8 888 8 8 8 8 888 888", "8 8 8 8 8 8 8 8 8 8 8 8 8 8", " 888 8 8 8 8 8888 88 8 8888 8 8" ] OVERXY=A SNAKE=[ " ### # # ## # ## ####", "## ## # # # ## ## ", " ## # ## #### # ## # ", "### # # # # # # ####" ] def drawGAMEOVER(x,y,size,color): for yOf in range(len(GAMEOVER)): for xOf in range(len(GAMEOVER[yOf])): if GAMEOVER[yOf][xOf]=="8": fill_rect(x+xOf*size,y+yOf*size,size,size,color) fill_rect(0,0,322,222,(0,0,0)) x=50 while 1: sleep(0.02) x-=1 drawGAMEOVER(x,50,5,(255,0,0)) drawGAMEOVER(x,50,5,(0,0,0)) if x+len(GAMEOVER[0])*4 < -8: x=322