Advertisement
MightyD33r

Puthon Turtle Solution

Nov 23rd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import turtle
  2.  
  3. turt = turtle.Turtle()
  4. turt.speed(0)
  5.  
  6. for i in range(24):
  7.     for color in ["red", "green", "blue"]:
  8.         turt.color(color)
  9.         turt.forward(200)
  10.         turt.left(95)
  11. turt.color("black")
  12. turt.right(45)
  13. for i in range(72):
  14.   turt.forward(11.83)
  15.   turt.left(5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement