Commit af959c60 by BellCodeEditor

save project

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