Commit 70960565 by BellCodeEditor

save project

parent 52ce76e9
Showing with 12 additions and 21 deletions
# 悟空想海龟作图画出弹簧隧道,但是出现了bug,运行不了,请你帮助他,修改bug~ # 悟空想海龟作图画出弹簧隧道,但是出现了bug,运行不了,请你帮助他,修改bug~
import turtle today_menu={'前菜':{'熏鱼':20,'生蚝':20,'面包':10},
'汤':{'玉米浓汤':15,'蔬菜汤':15,'海鲜汤':15},
pen=turtle.Pen() '主菜':{'鱼':40,'虾':30,'蟹':20,'贝壳类':20},
screen=turtle.Screen() '间菜':{'牛扒':25,'煨菜':25,'肉排':30},
pen.speed() '烧烤和沙拉':{'需要':15,'不需要':0},
pen.hideturtle() '甜品':{'可丽露':20,'吐司':15,'蓝莓松饼':20}}
screen.bgcolor('black') for k,v in today_menu.items():
print('今天'+ k +'有:')
i=0 for i in v:
while i<135: print(i,end='')
pen.pencolor('pink') print()
pen.penup() \ No newline at end of file
pen.goto(0,0)
pen.forward(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