Commit c171b284 by BellCodeEditor

save project

parent 05d25f41
Showing with 11 additions and 2 deletions
import turtle
pen=turtle.Pen()
pen.shape("turtle")
pen.fillcolor("red")
pen.begin_fill()
for i in range(5):
pen.forward(100)
pen.left(144)
pen.end_fill()
turtle.done()
...@@ -3,4 +3,4 @@ print("玩家出拳:"+player) ...@@ -3,4 +3,4 @@ print("玩家出拳:"+player)
jisuanji=["石头","剪刀","布"] jisuanji=["石头","剪刀","布"]
import random import random
d=random.choice(jisuanji) d=random.choice(jisuanji)
print("计算机出拳:"+d) print("计算机出拳:"+d)
\ 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