Commit 6dbe91b6 by BellCodeEditor

save project

parent 44046ded
Showing with 7 additions and 10 deletions
import turtle
pen=turtle.Pen()
pen.fillcolor("white")
pen.begin_fill()
for i in range(5):
pen.forward(200)
pen.left(144)
pen.end_fill()
turtle.done()
\ No newline at end of file
import random
player=input("请出拳(剪刀/石头/布)")
print("玩家出"+player)
list=["剪刀","石头","布"]
computer=random.choice(list)
print("计算机出"+computer)
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