Commit a12c7bcd by BellCodeEditor

save project

parent 940fb281
Showing with 22 additions and 13 deletions
import random
player=input("玩家请出拳:石头剪刀布")
print("玩家出拳:"+player)
list=["石头","剪刀","布"]
compuret=random.choice(list)
print("电脑出拳:"+compuret)
if player==compuret:
print("平局")
elif (player=="石头" and compuret=="剪刀")or(player=="剪刀" and compuret=="布")or(player=="布" and compuret=="石头"):
print(恭喜你赢了)
else:
print(很遗憾你输了)
\ No newline at end of file
import turtle
len=60
pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("red")
pen.penup()
pen.goto(100,-100)
pen.write("你好老登\nSB\n大傻逼\n你妈",font=("Times",20,"normal"))
pen1=turtle.Pen()
pen1.pencolor("pink")
pen1.pensize(20)
pen1.left(45)
pen1.forward(len*2)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(len*2)
pen1.hideturtle()
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