Commit fd37ddb5 by BellCodeEditor

save project

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