当前位置: 移动技术网 > IT编程>脚本编程>Python > python石头剪刀布小游戏(三局两胜制)

python石头剪刀布小游戏(三局两胜制)

2019年03月21日  | 移动技术网IT编程  | 我要评论

小说全文阅读,萧如瑟作品集,鬼律师2

python 石头剪刀布小游戏(三局两胜),供大家参考,具体内容如下

import random
all_choioces = ['石头', '剪刀', '布']
win_list = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]
poeple_on = true
poeple_add = 0
compute_add =0
while poeple_on:
 compute = random.choice(all_choioces)
 put ='''(0)石头(1)剪刀(2)布 请选择:'''
 ind = int(input(put))
 poeple = all_choioces[ind]
 print('你出的:%s,计算机出的是:%s' % (poeple, compute))
 if poeple == compute:
  print('\033[32;1m平局\033[0m')
 elif [poeple, compute] in win_list:
  print('\033[31;1m你赢了\033[0m')
  poeple_add += 1
  if poeple_add == 2:
   poeple_on = false
   print('\033[32;1m游戏结束\033[0m')
 else:
  print('\033[31;1m计算机赢了\033[0m')
  compute_add += 1
  if compute_add == 2:
   poeple_on = false
   print('\033[32;1m游戏结束\033[0m')

第二种简单的格式

import random
all_choioces = ['石头', '剪刀', '布']
win_list = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]
poeple_add = 0
compute_add = 0
while poeple_add < 2 and compute_add < 2 :
 compute = random.choice(all_choioces)
 put ='''(0)石头(1)剪刀(2)布 请选择:'''
 ind = int(input(put))
 poeple = all_choioces[ind]
 print('你出的:%s,计算机出的是:%s' % (poeple, compute))
 if poeple == compute:
  print('\033[32;1m平局\033[0m')
 elif [poeple, compute] in win_list:
  print('\033[31;1m你赢了\033[0m')
  poeple_add += 1
 else:
  print('\033[31;1m计算机赢了\033[0m')
  compute_add += 1

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网