Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

bellcode / lesson10-3

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • lesson10-3
  • diy1.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    auto save · be04f51b
    BellCodeEditor committed 2 years ago
    be04f51b
diy1.py 520 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13
# 期末考试结束了,悟空在教务系统查到了自己的几门必修课分数,他想通过python计算自己的平均分。
# 于是写了下面的代码,可是总是得不到结果,请帮纠正bug并跑通程序。

scores = {'语文':89,'数学':95,'英语':80}
score = 0  
def get_average(scores):
    for subject, score in scores.items():
        print('现在的总分是%d'%score)
        score=score+1
        ave_score = score/len(scores)
    print('平均分是%d'/ave_score)

get_average(scores)