Commit bef9eea4 by BellCodeEditor

save project

parent c6c185c0
Showing with 16 additions and 4 deletions
s1={小王:{'语文':100,'数学'114,'英语':98}}
s2={小小:{'语文':99,'数学':100,'英语':90}}
s1={'语文':100,'数学':114,'英语':98}
s2={'语文':99,'数学':100,'英语':90}
ss={'小王':s1,'小小':s2}
inso = score[name]
for m,n in ss.items():
while True:
i=input("你叫什么名字")
if i =="stop":
break
if i in ss:
b=ss[i]
for m,n in b.items():
print(m,n)
else:
print("名字不在名单里")
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