lunes, 4 de septiembre de 2017

Más ejemplos de Python

Ejemplo del circulo:

from Tkinter import *

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

Ejercicios de macros 03/05/2018 - 17/05/2018

 RESTA  http://blogdegraficacion.blogspot.mx/ restas macro p, s     mov al, p     sub al, s     add al, 30h     mov resta, a...