资源简介


资源截图

代码片段和文件信息

#coding: utf-8
 
__author__ = “小冰|lovingxiaobing“
__email__ = “865741184@qq.com|[email]lovingxiaobing@qq.com[/email]“
__note__ = “““
* 扫雷小游戏
* 需要python3.x以上
* 需要安装PyQt5
* pip install PyQt5
“““
 
import sys
 
try:
    import PyQt5
except ImportError:
    import tkinter
    from tkinter import messagebox
    err_str = “请安装PyQt5后再打开: pip install PyQt5“
    messagebox.showerror(“模块错误!“ err_str)
    raise ImportError(err_str)
    sys.exit()
 
 
from random import randint
from PyQt5.QtWidgets import \
    QApplication           \
    QWidget                \
    QPushButton            \
    QLCDNumber             \
    QDesktopWidget         \
    QMessageBox
from PyQt5.QtCore import Qt
 
 
class Mine(object):
    mine = 9
    no_mine = 0
    n_mine = 

评论

共有 条评论