Commit 3cb3b48f by BellCodeEditor

auto save

parent 39bdb55e
Showing with 24 additions and 0 deletions
'''#输入,字符串类型
color=input("请输入你的颜色:")
#print("你好",name)
import turtle
t=turtle.Pen()
t.pencolor(color)
for i in range(5):
t.forward(100)
t.left(144)
turtle.done()
#玩家部分
player=input("玩家出拳:(石头/剪刀/布):")
#输出
#电脑部分
'''
import random
b=12
a=[9,"小明",3.14,[666,888]]#列表
# 0 1 2 3
c=random.choice(a)
print(c)
print("小兰" in a)#Flase
print("小明" in a)#True
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