Commit f77bfd8f by BellCodeEditor

save project

parent f8d71757
Showing with 8 additions and 7 deletions
......@@ -6,11 +6,12 @@ score = {'悟空': student1, '诺依': student2, '小贝': student3}
name = input("名字:")
a = score[name]
print("*"*30)
while True:
for k,v in a.items():
if k,v in a:
while True:
if name in a:
for k,v in a.items():
print(k,v)
print("*"*30)
else:
print("bu")
continue
print("*"*30)
elif name=="q":
break
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