Commit 7b923313 by BellCodeEditor

save project

parent 6be71ee1
Showing with 12 additions and 9 deletions
...@@ -2,12 +2,18 @@ student1={'语文':100,'数学':100,'英语':100} ...@@ -2,12 +2,18 @@ student1={'语文':100,'数学':100,'英语':100}
student2={'语文':66.6,'数学':66.6,'英语':66.6} student2={'语文':66.6,'数学':66.6,'英语':66.6}
student3={'语文':-100,'数学':-100,'英语':-100} student3={'语文':-100,'数学':-100,'英语':-100}
sco={'作业帮':student1,'作业不全帮':student2,'作业SB帮':student3} sco={'作业帮':student1,'作业不全帮':student2,'作业SB帮':student3}
name = input("帮派:") while True:
print("*" * 30) print("快输!不想输按q滚")
if name in sco: name = input("帮派:")
print("*" * 30)
if name in sco:
s = sco[name] s = sco[name]
for k,v in s.items(): for k,v in s.items():
print(k,v) print(k,v)
print("*" * 30) print("*" * 30)
else: elif name == "q":
print("尼玛想象力太丰富了,重新输!") break
\ No newline at end of file else:
print("尼玛想象力太丰富了,重新输!")
print("*" * 30)
print("没了!滚!")
\ No newline at end of file
a_sb={'a':1,'b':2,'c':3,'d':4}
for i in
\ 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