Advertisement
MUstar

IoT Python3 0814 - Turtle_Circle1

Aug 15th, 2017
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import turtle as t
  2. n=36
  3. t.bgcolor("black")
  4. t.color("yellow")
  5. t.speed(0)
  6. for x in range(n):
  7.     t.circle(50)
  8.     t.left(360/n)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement