Commit a16c0391 by BellCodeEditor

save project

parent 13eaf573
Showing with 14 additions and 9 deletions
a={'语文':100,'数学':100,'英语':100}
b={'语文':100,'数学':100,'英语':100}
c={'语文':100,'数学':100,'英语':100}
abc={'悟空':c,'小贝':b,'老登':a}
info = abc['悟空']
for k,v in info.items():
a={"数学":1,"语文":2,"英语":3}
b={"数学":12,"化学":13,"物理":50}
c={"牛马文学":1,"原神学":2,"缺德与犯法":150}
s={"梁志超":a,"罗翔":b,"马牛逼":c}
name=input("名字:")
print("*"*30)
if name in s:
info=s["name"]
for k,v in s.items():
print(k,v)
UID=abc['悟空']['数学']
print(UID)
\ No newline at end of file
print("*"*30)
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