Commit 5ef88148 by BellCodeEditor

save project

parent 6a2a1bc3
Showing with 16 additions and 3 deletions
# import turtle
import turtle
# pen=turtle.Pen()
# pen.write("杀马特团长,\n我在沈阳大街等你\n有你好果汁吃。",font=("time","20","normal"))
# turtle.done()
\ No newline at end of file
# turtle.done()
p=turtle.Turtle()
p.pensize(5)
p.pencolor("red")
p.fillcolor("red")
p.begin_fill()
p.left(45)
p.forward(100)
p.circle(50,180)
p.right(90)
p.circle(50,180)
p.forward(100)
p.end_fill()
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