Commit 1e1279cf by BellCodeEditor

save project

parent 3de2c75a
Showing with 4 additions and 21 deletions
#悟空想海龟作图画出弹簧轨道 today_menu={'前菜':{'熏鲢鱼':20,'生蚝':20,'面包':10},
import turtle '汤':{'玉米浓汤':15,'蔬菜汤':15,'海鲜汤':15},
}
pen=turtle.Pen() \ No newline at end of file
screen=turtle.Screen()
pen.speed(100)
pen.hideturtle()
screen.bgcolor('black')
i=0
while i<180:
pen.pencolor('pink')
pen.penup()
pen.goto(0,0)
pen.fd(200)
pen.pendown()
pen.circle(100)
pen.left(2)
i+=1
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