Commit f5eb5738 by BellCodeEditor

save project

parent 4ac3aa5d
Showing with 25 additions and 12 deletions
scores = {'语文':89,'数学':95,'英语':80} import turtle
def get_average(dict_1):
score = 0 pen = turtle.Pen()
screen = turtle.Screen()
for subject, score in scores.items(): pen.speed()
pen.hideturtle()
score += score screen.bgcolor('black')
print('现在的总分是%d'%score)
ave_score = score/len(scores) i=0
peint('平均分是%d'%ave_score) while i <135:
pen.pencolor('pink')
pen.penup()
pen.goto(0,0)
pen.forward(200)
pen.pendown()
pen.ci
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