Commit 7ec54a3a by BellCodeEditor

save project

parent 53478aab
Showing with 20 additions and 7 deletions
...@@ -2,9 +2,18 @@ import turtle ...@@ -2,9 +2,18 @@ import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.write("你好\nSB\n大傻逼\n祝你每天吃屎\n鸡你太美小傻逼\n小傻逼大SB祝你每天喝尿",font=("Times",30,"normal")) pen.write("你好\nSB\n大傻逼\n祝你每天吃屎\n鸡你太美小傻逼\n小傻逼大SB祝你每天喝尿",font=("Times",30,"normal"))
pen.hideturtle() pen.hideturtle()
#画爱心
pen1=turtle.Pen()
pen1.pensize(5)
pen1.color("red")
pen1.left(45)
pen1.forward(200)
pen1.circle(100,180)
pen1.right(90)
pen1.circle(100,180)
pen1.forward(200)
turtle.done() turtle.done()
...@@ -2,10 +2,14 @@ import turtle ...@@ -2,10 +2,14 @@ import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.write("你好,再见",font=("Times",30,"normal")) pen.write("你好,再见",font=("Times",30,"normal"))
pen.hideturtle() pen.hideturtle()
#画爱心
pen1=turtle.Pen()
pen1.pensize(5)
pen1.color("red")
pen1.left(45)
pen1.forward(200)
pen1.circle(100,180)
pen1.right(90)
pen1.circle(100,180)
pen1.forward(200)
turtle.done() turtle.done()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment