Commit 588468f7 by BellCodeEditor

save project

parent 0eaf84bd
Showing with 3 additions and 4 deletions
...@@ -5,7 +5,7 @@ for i in score: ...@@ -5,7 +5,7 @@ for i in score:
print(score[i]) print(score[i])
for k in score.keys(): for k in score.keys():
print(k) print(k)
for v in score.keys(): for v in score.values():
print(v) print(v)
for i in score.keys(): for k,v in score.items():
print(k.v) print(k,v)
\ 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