Commit 82c9e169 by BellCodeEditor

save project

parent 7555120b
Showing with 10 additions and 10 deletions
...@@ -3,14 +3,13 @@ import turtle ...@@ -3,14 +3,13 @@ import turtle
# p.write("你好\n谢谢你",font=("Times",40,"normal")) # p.write("你好\n谢谢你",font=("Times",40,"normal"))
# p.hideturtle() # p.hideturtle()
# turtle.done() # turtle.done()
p1=turtle.Pen() pen=turtle.Pen()
p1.pensize(4) pen.pensize(5)
p1.pencolor("red") pen.pencolor("red")
p1.left(45) pen.left(45)
p1.forward(100) pen.forward(100)
p1.circle(50,180) pen.circle(50,180)
p1.right(90) pen.right(90)
p1.circle(50,180) pen.circle(50,180)
p1.forward(100) pen.forward(100)
p1.hideturtle()
turtle.done() turtle.done()
\ No newline at end of file
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