Ejemplo del circulo:
root = Tk()
root.title('Ejemplo')
circulo = Canvas(width=420, height=420, bg='white')
circulo.pack(expand=YES, fill=BOTH)
circulo.create_oval(20, 20, 400, 400, width=10, fill='green')
root.mainloop()
Ejemplo de Rectangulo:
from Tkinter import *
root = Tk()
root.title('Ejemplo')
rectangulo = Canvas(width=420, height=420, bg='white')
rectangulo.pack(expand=YES, fill=BOTH)
rectangulo.create_rectangle(20, 20, 400, 400, width=10, fill='green')
root.mainloop()
Ejemplo de la linea:
from Tkinter import *
root = Tk()
root.title('Ejemplo')
linea = Canvas(width=210, height=210, bg='white')
linea.pack(expand=YES, fill=BOTH)
linea.create_line(0, 200, 200, 0, width=10, fill='blue')
linea.create_line(0, 0, 200, 200, width=10, fill='blue')
root.mainloop()
No hay comentarios:
Publicar un comentario