Commit f0b5b8a2 by BellCodeEditor

auto save

parent 51714b4b
Showing with 2 additions and 2 deletions
...@@ -5,8 +5,8 @@ sco={'作业帮':student1,'作业不全帮':student2,'作业SB帮':student3} ...@@ -5,8 +5,8 @@ sco={'作业帮':student1,'作业不全帮':student2,'作业SB帮':student3}
name = input("帮派:") name = input("帮派:")
print("*" * 30) print("*" * 30)
if name in sco: if name in sco:
sco = sco[name] s = sco[name]
for k,v in sco: for k,v in s.items():
print(k,v) print(k,v)
print("*" * 30) print("*" * 30)
else: else:
......
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