Advertisement
fmasanori

Turtle basic

Oct 24th, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. from turtle import *
  2. def poly(n):
  3.     for i in range(n):
  4.         color('green')
  5.         pensize(3)
  6.         fd(50)
  7.         left(360/n)
  8.  
  9. for i in range(3, 10):
  10.     poly(i)
  11.  
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement