Commit d864e403 by BellCodeEditor

save project

parent 243bc244
Showing with 8 additions and 3 deletions
...@@ -2,9 +2,14 @@ a={'语文':100,'数学':100,'英语':100} ...@@ -2,9 +2,14 @@ a={'语文':100,'数学':100,'英语':100}
b={'语文':100,'数学':100,'英语':100} b={'语文':100,'数学':100,'英语':100}
c={'语文':100,'数学':100,'英语':100} c={'语文':100,'数学':100,'英语':100}
d={"e":a,"f":b,"g":c} d={"e":a,"f":b,"g":c}
for k,v in d.items(): q=input("请输入查询人名字:")
print(k,v,end=" ") if q in d:
into=d[q]
for k,v in into.items():
print(k,v,end=" ")
else:
print("w"*10)
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