• 大小: 1.12KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-05-08
  • 语言: Python
  • 标签: 小游戏  猜拳  游戏  

资源简介

猜拳小游戏

资源截图

代码片段和文件信息

import random                                  #import代表导入模块,random是随机数模块
lost = 0
win = 0
ping = 0
while True:                    #循环
    print(‘=‘*60)
    print(‘****************欢迎来猜拳*****************‘)
    print(‘赢:%s      平:%s       输:%s‘ % (winpinglost))
    print(‘1.石头  2.剪刀   3.布  4.退出‘)
    robot = random.choice( [‘剪刀‘‘石头‘‘布‘])
    h = input(‘请出:‘)
    if (h == ‘1‘ and robot == ‘剪刀‘)or (h == ‘2‘ and robot == ‘布‘) or (h== ‘3‘ and robot == ‘石头‘):             #赢
        

评论

共有 条评论