Commit 905bbfcf by BellCodeEditor

auto save

parent 1d91e4b4
Showing with 37 additions and 0 deletions
import turtle
Pen=turtle.Pen()
Pen.write("驽马!",font=("黑体",40,"bold"))
Pen.hideturtle()
turtle.done()
left(45)
forward(100)
penl.left(90)
penl.circle(50,180)
import turtle
Pen=turtle.Pen()
Pen.penup()
Pen.goto(60,0)
Pen.write("驽马!",font=("黑体",40,"bold"))
Pen.hideturtle()
turtle.pencolor("red")
turtle.fillcolor("red")
turtle.pensize(20)
turtle.begin_fill()
turtle.left(45)
turtle.forward(100)
turtle.circle(50,180)
turtle.right(90)
turtle.circle(50,180)
turtle.forward(100)
turtle.end_fill()
turtle.hideturtle()
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