我太难了。。。 发表于 2020-11-22 19:05:32

和电脑猜拳(不求打赏,源码纯免费)

本帖最后由 我太难了。。。 于 2020-11-22 20:15 编辑

本人亲测
import random
youturn=['石头','剪刀','布']
c=0
pc=0
win_list=['12','23','31']
shitoujiandaobu=['1','2','3']
a = (['1', '2', '3'])
name = input('请输入名称')
while True:
    computer=random.choice(['1','2','3'])
    you = input('请选择:1石头2剪刀3布')
    if you=='1':
      x=1
    elif you=='2':
      x=1
    elif you=='3':
      x=1
    else:
      print("请重新输入!")
      continue
    if you==computer:
      you=int(you)-1
      print('你和电脑都出了'+youturn)
      print(name +str(c))
      print('电脑' +str(pc))
      continue
    elif you + computer in win_list:
      print('你赢了')
      c+=1
      print(name +str(c))
      print('电脑' +str(pc))
      if c==10:
            print('你成功了!')
            print(name +str(c))
            print('电脑' +str(pc))
      continue
    else:
      print('你输了')
      pc+=1
      if pc==10:
            print('你失败了!')
            print(name +str(c))
            print('电脑' +str(pc))
      else:
            print(name +str(c))
            print('电脑' +str(pc))
            continue

象棋爱好者 发表于 2020-11-22 21:05:49

sofa

象棋爱好者 发表于 2020-11-22 21:08:25

wuyumarisa 发表于 2021-2-8 13:15:07

{:5_108:}

sunyt 发表于 2021-7-5 15:01:27

666

sunyt 发表于 2021-7-5 15:01:57

6{:10_266:}

鄙人gdll 发表于 2021-8-24 14:43:37

{:5_95:}

crazyling 发表于 2021-8-26 09:24:58

还行
页: [1]
查看完整版本: 和电脑猜拳(不求打赏,源码纯免费)