diff --git a/circle.py b/circle.py new file mode 100644 index 0000000000000000000000000000000000000000..2e92aa3c7e3f8d37763ad0968c42a1b6282ad280 --- /dev/null +++ b/circle.py @@ -0,0 +1,9 @@ +import turtle + +t = turtle.Turtle('turtle') + +t.fillcolor('purple') +t.begin_fill() +t.circle(100) +t.end_fill() +turtle.done()