Advertisement
jabela

simplesnowflake

Oct 15th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. import turtle
  2. turtle.bgcolor("blue")
  3. turtle.color("cyan")
  4. for i in range(10):
  5.     for i in range (2):
  6.         turtle.forward(100)
  7.         turtle.right(60)
  8.         turtle.forward(100)
  9.         turtle.right(120)
  10.     turtle.right(36)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement