当前位置: 首页>>代码示例>>Python>>正文


Python Gui.display方法代码示例

本文整理汇总了Python中gui.Gui.display方法的典型用法代码示例。如果您正苦于以下问题:Python Gui.display方法的具体用法?Python Gui.display怎么用?Python Gui.display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gui.Gui的用法示例。


在下文中一共展示了Gui.display方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: SudokuGrid

# 需要导入模块: from gui import Gui [as 别名]
# 或者: from gui.Gui import display [as 别名]
__author__ = 'jdubois'

from grid import SudokuGrid
from gui import Gui
from algorithms import Solver

file_to_open = "data/test_easy.txt"
file_to_open = "data/test_hard.txt"

grille = SudokuGrid(file_to_open)

g = Gui()

print("Displaying original grid")
g.display(grille)

Solver.deduction_solve(grille)

print("Displaying grid after first logical deductions")
g.display(grille)

#print("overall possibilities:",sum([len(cell.possibilities) for cell in grille.empty_cells],0),"for a total of",len(grille.empty_cells))

ordered_cells = sorted(grille.empty_cells, key = lambda cell: len(cell.possibilities))
if len(ordered_cells) > 0:
    print("Trying remaining possibilities on empty cells")
    Solver.try_to_fill_randomly(grille, ordered_cells = ordered_cells)

if grille.isFilled():
    print("Displaying final grid")
    g.display(grille)
开发者ID:goungy,项目名称:SudokuSolver,代码行数:33,代码来源:main.py


注:本文中的gui.Gui.display方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。