Commit 2efbe3a3 by BellCodeEditor

save project

parent 2b18321b
Showing with 23 additions and 1 deletions
import turtle
pen=turtle.Pen()
pen=turtle.Screen()
pen.speed('fast')
pen.hideturtle()
pen.bgcolor('black')
i=0
while i<135:
pen.pencolor('pink')
pen.penup()
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
......@@ -8,7 +8,7 @@ def get_average(scores):
for subject, score in scores.items():
sum_score += score
print('现在的总分是%d'%sum_score)
ave_score = score/len(scores)
ave_score = sum_score/len(scores)
print('平均分是%d'%ave_score)
get_average(scores)
\ 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