Commit e87651ec by BellCodeEditor

save project

parent 1c53cf54
Showing with 26 additions and 3 deletions
...@@ -2,16 +2,39 @@ student1 = {'语文': 91, '数学': 88, '英语': 85} ...@@ -2,16 +2,39 @@ student1 = {'语文': 91, '数学': 88, '英语': 85}
student2 = {'语文': 97, '数学': 98, '英语': 90} student2 = {'语文': 97, '数学': 98, '英语': 90}
student3 = {'语文': 95, '数学': 100, '英语': 93} student3 = {'语文': 95, '数学': 100, '英语': 93}
score = {'悟空': student1, '诺依': student2, '小贝': student3} score = {'悟空': student1, '诺依': student2, '小贝': student3}
while True: while True:
name = input("你叫什么") name = input("你叫什么")
if name in score: if name in score:
q = score[name] q = score[name]
print(name+":")
print("*"*20)
for k,v in q.items(): for k,v in q.items():
print("*"*100)
print("悟空" + k,v) print(name + k,v)
print("*"*100) print("*"*20)
elif name == "q":
break
else: else:
print("错误") print("错误")
print("请选择重新输入或退出")
# w = input("")
# w = int(w)
# if w = e:
# name = input("你叫什么")
# if name in score:
# q = score[name]
# print(name+":")
# print("*"*20)
# for k,v in q.items():
# print(name + k,v)
# print("*"*20)
# if w = r:
# break
......
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