Commit a7f24d40 by BellCodeEditor

save project

parent 4ca7e696
Showing with 17 additions and 1 deletions
import turtle
pen=turtle.Pen()
pen.speed(90)
pen.hideturtle()
i=0
while i<135:
pen.penup()
pen.goto(0,0)
pen.forward(300)
pen.pendown()
pen.circle(100)
pen.left(2)
i+=1
turtle.done()
\ No newline at end of file
# 勇于挑战的创造师,下面的代码犯了三类典型错误,请你把bug揪出来吧。
score = {'悟空语文':95,'悟空数学':88,'悟空英语':85,'悟空美术':97}
# 打印出悟空语文成绩
score = {'悟空语文':95,'悟空数学':88,'悟空英语':85,'悟空美术':97}
print(score['悟空语文'])
# 打印出悟空的美术成绩
print(score['悟空美术'])
......
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