资源简介
学习python和AI,用wxPython写了这个游戏包含求解,共享出来,欢迎喜欢AI的人交流
截图
http://highler.blogspot.com/2009/03/blog-post.html
代码片段和文件信息
# -*- coding: gbk -*-
import sys
import wx
import wx.html
import wx.lib.wxpTag
#---------------------------------------------------------------------------
class NGAboutBox(wx.Dialog):
NGOverview = “““
Number Game
填数字游戏规则:
九行九列共八十一格,分成九个三乘三的九宫格
需要将一到九数字填入八十一格中,使得每行每列
和每个九宫中包含一到九所有数字。
This is a game to enter numbers from 1 to 9.
It has one board which has 9 rows and 9 columns. Total 81 squares.
Rows and columns are using index 0 to 8
The board is also divided into 9 regions each region has 3 rows and 3 columns.
region=[startRowendRowstartColumnendColumn]
9 regions are
[0202][0235][0258]
[3502][3535][3558]
[5802][5835][5858]
The game rule is simple:
Each number must appear in rowscolumns and regions once.
Additional shortcut keys:
- Move cursor: ijklspace
- Enter number: 12..9
- Delete number: dbackspace
- Highlight number: .
Platform: %s
Python verion: %s
Written by highlertech@gmail.com
“““
def __init__(self parent):
wx.Dialog.__init__(self parent -1 ‘About The Number Game‘)
html = wx.html.HtmlWindow(self -1 size=(420 -1))
if “gtk2“ in wx.PlatformInfo:
html.SetStandardFonts()
py_version = sys.version.split()[0]
txt = self.NGOverview % (“ “.join(wx.PlatformInfo[1:])py_version)
html.SetPage(txt)
btn = html.FindWindowById(wx.ID_OK)
ir = html.GetInternalRepresentation()
html.SetSize( (ir.GetWidth()+25 ir.GetHeight()+25) )
self.SetClientSize(html.GetSize())
self.CentreOnParent(wx.BOTH)
if __name__ == ‘__main__‘:
app = wx.PySimpleApp()
dlg = NGAboutBox(None)
dlg.ShowModal()
dlg.Destroy()
app.MainLoop()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2113 2009-04-01 00:11 NGAbout.py
文件 23659 2009-04-01 00:22 NGBoard.py
文件 3181 2008-11-08 23:38 NGBoardPanel.py
文件 2966 2009-03-15 20:20 NGControlPanel.py
文件 2000004 2008-11-05 18:52 NGData.ngb
文件 6758 2009-03-01 00:09 NGMain.pyw
文件 174056 2009-03-21 23:17 NGRes.py
相关资源
- 树莓派利用python、opencv、PyALPR识别车
- 爬取某块区域的实时交通态势数据,
- Anaconda3-5.3.1-Windows-x86_64 (Python3.x版本
- DS_Store文件泄漏利用python脚本
- ArcGIS10.1中利用python语言批量实现遥感
- 用自己的数据制作python版本cifar10数据
- python遗传算法求函数极值.py
- Python教程.rar
- python数据挖掘分类聚类回归关联算法
- Python爬虫源码—爬取猫途鹰官方旅游
- 密度聚类(Density peaks Clustering)Pyth
- python摄像头视频显示到TK窗口
- 国际麻将AI-根据向听数计算最优操作
- 爬取瓜子二手车.py
- 人脸识别UI Pythone+pyq5+opencv 多线程模式
- pcap-1.1.win32-py2.7.exe
- Python制作的汉诺塔演示小脚本
- python django+bootstrap实现用户管理系统
- python+MySQL+bootstrap+ajax项目
- 基于Python的双路视频传输及双显示系
- python模型restful接口
- Python3—EM&GMM;
- python+numpy实现自适应阈值分割函数O
- python+numpy实现均值滤波
- python代码实现录音
- 初学者练习python编程的100个小程序
- python入门到实践 外星人入侵项目代码
- 合并BN层的python脚本
- 语音读邮件的小程序python实现
- python入账管理系统源码
评论
共有 条评论