From aeea9a4484677ecc0e6bf878e99cc5111c992ca7 Mon Sep 17 00:00:00 2001 From: BellCodeEditor <bellcode_dev@bell.ai> Date: Sat, 21 May 2022 15:33:05 +0800 Subject: [PATCH] save project --- diy11.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 diy11.py diff --git a/diy11.py b/diy11.py new file mode 100644 index 0000000..f59f141 --- /dev/null +++ b/diy11.py @@ -0,0 +1,20 @@ +import turtle + +pen=turtle.Pen() +screen=turtle.Screen() +pen.speed("fast") +pen.hideturtle() +screen.bgcolor("black") + +i=0 +while i<135: + pen.pencolor("pink") + pen.penup() + pen.goto(0,0) + pen.forward(200) + pen.pendown() + pen.circle(100) + pen.left(2) + i+=1 + +turtle.down() \ No newline at end of file -- libgit2 0.25.0