Commit 8ef9a9d7 by BellCodeEditor

save project

parent e82dc857
Showing with 19 additions and 7 deletions
#玩家出拳
import random
list=["石头","剪刀","布"]
computer=random.choice(list)
if piayer==computer:
\ No newline at end of file
import turtle
screen=turtle.Screen()
pen1=turtle.Pen()
pen1.penup()
pen1.goto(100,0)
pen1.pendown()
pen1.pencolor("red")
pen1.pensize(5)
def love(len):
pen1.left(45)
pen1.forward(2*len)
pen1.circle(len,180)
pen1,forward(2*len)
len=screen.textinput("提示","你想要多大的爱心呀?")
lovesize=int(len)
love(lovesize)
pen1.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