Commit c112e739 by BellCodeEditor

save project

parent a8392f66
Showing with 17 additions and 12 deletions
""" st1={"a":99,"b":96,"c":95}
请使用turtle模块画出五角星 st2={"a":66,"b":68,"c":63}
""" st3={"a":89,"b":83,"c":86}
import turtle score={"d":st1,"e":st2,"f":st3}
open=turtle.pen() while True:
For i in range(5) name=input("名字(退出请输入q):")
pen.forward(200) if name in score:
pen.right(144) st=score[name]
pen.hideturtle() print("*"*30)
pen.done() for k,v in st.items():
print(k,v)
\ No newline at end of file print("*"*30)
elif name=="q":
break
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