Commit 3b25bc8e by BellCodeEditor

save project

parent dcb2efc0
Showing with 9 additions and 2 deletions
...@@ -3,6 +3,12 @@ student2 = {'ww':97,'rr':98,'qq':90} ...@@ -3,6 +3,12 @@ student2 = {'ww':97,'rr':98,'qq':90}
student3 = {'ww':95,'rr':100,'qq':93} student3 = {'ww':95,'rr':100,'qq':93}
score = {'dd': student1,'hh':student2,'ff':student3} score = {'dd': student1,'hh':student2,'ff':student3}
name = input("mm:") name = input("mm:")
info = score[name]
for k,v in info.items():
if name in score:
score = score[name]
for k,v in score.items()
print(k,v) print(k,v)
print("*" * 30)
else:
print(" fjkbuididie")
\ 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