Advertisement
python_games

python alien!(.py)

Dec 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #script by python_games
  2. from tkinter import *
  3. from time import sleep
  4. w = Tk()
  5. w.title("python_games alien!")
  6. c = Canvas(w, height=300, width=400)
  7. c.pack()
  8. body = c.create_oval(100, 150, 300, 250, fill='green')
  9. eye = c.create_oval(170, 70, 230, 130, fill='white')
  10. eyeball = c.create_oval(190, 90, 210, 110, fill='black')
  11. mouth = c.create_oval(150, 220, 250, 240, fill='red')
  12. neck = c.create_line(200,150,200,130)
  13. hat = c.create_polygon(180,75,220,75,200,20,fill='blue')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement