Commit 2fc6d36d by BellCodeEditor

save project

parent 7b923313
Showing with 11 additions and 20 deletions
student1={'语文':100,'数学':100,'英语':100}
student2={'语文':66.6,'数学':66.6,'英语':66.6}
student3={'语文':-100,'数学':-100,'英语':-100}
sco={'作业帮':student1,'作业不全帮':student2,'作业SB帮':student3}
while True:
print("快输!不想输按q滚")
name = input("帮派:")
print("*" * 30)
if name in sco:
s = sco[name]
for k,v in s.items():
print(k,v)
print("*" * 30)
elif name == "q":
break
else:
print("尼玛想象力太丰富了,重新输!")
print("*" * 30)
print("没了!滚!")
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.left(45)
pen.forward(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(100)
pen.hideturtle()
turtle.done()
\ 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