Commit 6ce19bca by BellCodeEditor

auto save

parent 1e9929e7
Showing with 3 additions and 2 deletions
......@@ -3,7 +3,7 @@
s = {'语文':89, '数学':95, '英语':80}
t=0
for u in s.items():
t=u+t
for u,v in s.items():
t=v+t
o=t/len(s)
print(o)
\ 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