Commit 766c0a67 by BellCodeEditor

save project

parent b646ca54
Showing with 234 additions and 0 deletions
...@@ -12,8 +12,242 @@ for i in range(5): #重复执行5次 ...@@ -12,8 +12,242 @@ for i in range(5): #重复执行5次
pen.end_fill() #结束填充红色 pen.end_fill() #结束填充红色
turtle.done() turtle.done()
""" """
"""
piayer=input("请出拳:石头/剪刀/布") piayer=input("请出拳:石头/剪刀/布")
print("玩家出拳:"+playar) print("玩家出拳:"+playar)
"""
import random
list=["石头","剪刀","布"]
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