Commit cdcc9e41 by BellCodeEditor

auto save

parent 623fb1a6
Showing with 20 additions and 3 deletions
""" from turtle import *
请使用turtle模块画出五角星 pensize(1)
""" pencolor( 'red')
fillcolor('pink')
speed(5)
up()
goto(-30,100)
down()
begin_fill()
left(90)
circle(120,180)
circle(360,70)
left(38)
circle(360,70)
circle(120,180)
end_fill()
up()
goto(-100,-100)
down()
\ 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