Commit af959c60 by BellCodeEditor

save project

parent a8392f66
Showing with 17 additions and 12 deletions
""" import turtle as t
请使用turtle模块画出五角星 t.bgcolor("pink")
""" t.pencolor("red")
import turtle t.pensize(8)
open=turtle.pen() t.penup()
For i in range(5) t.goto(0,-180)
pen.forward(200) t.pendown()
pen.right(144) lovesize = int(t.textinput("提示","请输入爱心的大小0-150"))
pen.hideturtle() t.setheading(45)
pen.done() t.forward(2*lovesize)
t.circle(lovesize,180)
\ No newline at end of file t.right(90)
t.circle(lovesize,180)
t.forward(2*lovesize)
t.hideturtle()
t.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