-Ejemplo de gráficos con Python -



EJEMPLO DE TRES FIGURAS CON PYTHON




Código.

from Tkinter import * 

root = Tk()  
root.title('Ejemplo') 

circulo = Canvas(width=210, height=210, bg='white') #aqui se crea el cuadro blanco donde aparece nuestra figura con su ancho y largo que estableci y su color
circulo.pack(expand=YES, fill=BOTH) #sierve para cargar la figura
circulo.create_oval(10, 10, 200, 200, width=5, fill='blue') 


rectangulo = Canvas(width=210, height=210, bg='white')
rectangulo.pack(expand=YES, fill=BOTH)
rectangulo.create_rectangle(10, 10, 200, 200, width=5, fill='yellow')

linea = Canvas(width=210, height=210, bg='white')
linea.pack(expand=YES, fill=BOTH)
linea.create_line(0, 200, 200, 0, width=10, fill='black')
linea.create_line(0, 0, 200, 200, width=10, fill='black')

root.mainloop()



Comentarios

Entradas populares de este blog

- SOLIDWORKS -

Librerías y Módulos: MySQL, MySQLdb y Python