Commit 6f4de34a by BellCodeEditor

save project

parent 72e157b2
Showing with 3 additions and 12 deletions
player=input("请出拳")
print("玩家出拳"+player)
\ No newline at end of file
import turtle
pen=turtle.Pen()
s=input("你想要什么颜色的五角星?")
print(s+"好的")
pen.fillcolor(s)
pen.begin_fill()
for i in range(6):
pen.right(60)
pen.forward(100)
pen.end_fill()
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