Commit c85673a0 by BellCodeEditor

save project

parent d943f1af
import random
player=input("请出拳(石头/剪刀/布):")
print("玩家出拳:"+player)
list=["石头","剪刀","布"]
computer=random.choice(list)
print(computer)
\ No newline at end of file
import turtle
t=turtle.Pen()
color=input("你想要啥颜色的五角星")
t.fillcolor(color)
t.begin_fill()
for i in range(5):
t.left(144)
t.forward(200)
t.hideturtle()
t.end_fill()
turtle.done()
\ No newline at end of file
player=input("请出拳(剪刀\\石头):")
print("玩家出拳:"+player)
\ 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