Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import graphics
  2. from graphics import *
  3.  
  4. def main():
  5. win = GraphWin("tyler",300, 300)
  6. img = Image(Point(150,150),"tyler.gif")
  7. img.draw(win)
  8. for i in range(8000):
  9. img.draw(win)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement