Advertisement
Enrro

zigzag 101427

Oct 14th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. '''
  2. Created on 14/10/2014
  3. zigzag@author: A01221672
  4. '''
  5. from Tkinter import*
  6. import math
  7.  
  8. x=0
  9. y = 0
  10. direccion =1
  11. ancho=600
  12. alto=375
  13. ventana = Tk()
  14. lienzo =Canvas(ventana, width= ancho, height=alto)
  15. lienzo.pack()
  16. for x in range(10):
  17. lienzo.create_line(50*x,y,50*x+20,y+50)
  18. lienzo.create_line(50*x,y+50,50*x+20,y)
  19.  
  20.  
  21.  
  22. mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement