Commit fd37ddb5 by BellCodeEditor

save project

parent 0d3ac6a7
Showing with 8 additions and 3 deletions
...@@ -6,7 +6,12 @@ syude={"五":score,"期":score1,"就":score2} ...@@ -6,7 +6,12 @@ syude={"五":score,"期":score1,"就":score2}
while True: while True:
name=input("名字:") name=input("名字:")
info=syude[name] if name in syude:
for k,v in info.items(): a=syude[name]
print(k,v) print('*'*30)
for k,v in a.items():
print(k,v)
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