from random import choice
print("Please choose one side to shoot:")
print("left,center,right")
you = input()
print("You kicked " + you)
direction = ["left","center","right"]
com = choice(direction)
print("Computer choose " + com)
if(com == you):
print("you are right")
else:
print("wrong")
list索引与切片操作
l = [365, 'everyday', 0.618, True]
I[0]为索引操作,指访问第1个元素
l[-3]表示倒数第3个元素。
l[1:3]为切片操作
得到的结果是['everyday', 0.618]。
l[:3] 如果不指定第一个数,切片就从列表第一个元素开始。
l[1:] 如果不指定第二个数,就一直到最后一个元素结束。
l[:] 都不指定,则返回整个列表的一个拷贝。