Advertisement
ABIX_Edukacja

Lekcja 10 - Turtle01

Apr 29th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. from turtle import *
  2.  
  3. def kwadrat():
  4.     fd(40)
  5.     lt(90)
  6.     fd(40)
  7.     lt(90)
  8.     fd(40)
  9.     lt(90)
  10.     fd(40)
  11.  
  12. def kwadrat2(x,y,bok):
  13.     pu()
  14.     goto(x,y)
  15.     pd()
  16.     for e in range(4):
  17.         fd(bok)
  18.         lt(90)
  19.  
  20. kwadrat2(20,30,10)
  21. kwadrat2(-30,10,30)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement