摘要: 源码及注释: 1 import pygame 2 from sys import exit 3 from random import randint 4 import time 5 import os 6 7 # 定义窗口分辨率 8 SCREEN_WIDTH = 700 9 SCREEN_HEIGH 阅读全文
posted @ 2021-02-19 22:08 BugMiaowu2021 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 源码(详细注释): 1 # -*- coding: utf-8 -*- 2 3 #游戏类 4 class Game: 5 #一般游戏进程,从读取存档开始 6 def Process(self): 7 #初始回合数为0 8 self.rounds = 0 9 #初始Continue标记为True 10 阅读全文
posted @ 2021-02-19 18:12 BugMiaowu2021 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import random 2 rang1 = int(input("请设置本局游戏的最小值:")) 3 rang2 = int(input("请设置本局游戏的最大值:")) 4 num = random.randint(rang1,rang2) 5 guess = "guess" 6 阅读全文
posted @ 2021-02-19 15:35 BugMiaowu2021 阅读(1564) 评论(0) 推荐(0) 编辑
摘要: 智障版截图: 智能版截图: 可能遇到的问题: No module named ‘pyqt5‘解决办法 智障版源码: 背景: muzm.jpg window.py 1 from PyQt5.QtWidgets import QMainWindow, QMessageBox 2 from PyQt5.Q 阅读全文
posted @ 2021-02-19 12:50 BugMiaowu2021 阅读(1150) 评论(0) 推荐(0) 编辑
摘要: 输入以下命令: 1. pip install PyQt5 -i https://pypi.douban.com/simple pip install PyQt5-tools -i https://pypi.douban.com/simple 阅读全文
posted @ 2021-02-19 12:48 BugMiaowu2021 阅读(2522) 评论(0) 推荐(0) 编辑
摘要: 问题: import cv2 : no module named cv2 解决: pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2021-02-19 11:59 BugMiaowu2021 阅读(1357) 评论(0) 推荐(0) 编辑