Commit 898ff4f8 by BellCodeEditor

save project

parent 83b9e8a1
Showing with 7 additions and 12 deletions
"""
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen_fillcolor("blue") pen.shape("turtle")
pen.begin_fill() pen.fillcolor("blue")
pen.began_fill()
for i in range(5): for i in range(5):
forword(100) pen.forward(200)
pen.left(144) pen.right(144)
pen.end_fill() pen.eng_fill()
turtle.done() turtle.done()
"""
list=["石头","剪刀","布"]
player=input("出拳")
print("玩家出"+player)
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