Commit 2ac7fe96 by BellCodeEditor

auto save

parent 62692a77
Showing with 14 additions and 0 deletions
student1 = {'语文':66.6,'数学':66.6,'英语':66.6}
student2 = {'语文':100,'数学':100,'英语':100}
student3 = {'语文':-100,'数学':-100,'英语':-100}
sco = {'作业不全帮':student1,'作业帮':student2,'作业SB帮':student3,}
name = input("帮派:")
print("*" * 30)
if name in sco:
sco = sco[name]
for k,v in sco.items():
print(k,v)
print("*" * 30)
else:
print('尼玛想象力真丰富,重新输!')
\ No newline at end of file
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