Fredrik Lundh wrote:
> The Eternal Squire wrote:
>
> > PyGame is your best bet for pure graphics.  Simple shapes can be done
> > in just a few statements.
>
> the same applies to Tkinter, of course.
>
>     from Tkinter import *
>
>     # set things up
>     c = Canvas(); c.pack()
>
>     # draw stuff
>     c.create_polygon((0, 100, 50, 0, 100, 100), fill="red")
>
>     # get things going
>     mainloop()
>
> at the "draw a triangle" level, the main difference is mostly that
> Tkinter is a bit more likely to be installed on your machine...
Out of curiousity :

why not :
  c = Canvas()
  c.pack()

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to