draw python shapes code example
Example 1: Python turtle setup
import turtle
window_Name = turtle.Sreen()
turtle_Name = turtle.Turtle()
Example 2: turtle graphics in python
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()