From 7f179c1333d6e461770111b3103266e6d584e340 Mon Sep 17 00:00:00 2001
From: BellCodeEditor <bellcode_dev@bell.ai>
Date: Sat, 11 Mar 2023 09:19:21 +0800
Subject: [PATCH] save project

---
 diy1.py | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 diy1.py

diff --git a/diy1.py b/diy1.py
new file mode 100644
index 0000000..a3c9391
--- /dev/null
+++ b/diy1.py
@@ -0,0 +1,46 @@
+import turtle
+
+
+pen=turtle.Pen()   
+pen.penup()
+
+pen.goto(100,-100)
+pen.write("hello花姑娘\nsb",font=("times",50,"normal"))
+pen.hideturtle()       
+pen1=turtle.Pen()
+pen1.pensize(9)   
+pen1.pencolor("red")
+pen1.left(45)
+pen1.forward(100)
+pen1.circle(50,180)
+
+
+pen1.right(90)
+pen1.circle(50,180)
+pen1.forward(100)
+
+turtle.done()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
--
libgit2 0.25.0