本文整理汇总了Python中Grid.Grid.generate_puzzle方法的典型用法代码示例。如果您正苦于以下问题:Python Grid.generate_puzzle方法的具体用法?Python Grid.generate_puzzle怎么用?Python Grid.generate_puzzle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Grid.Grid
的用法示例。
在下文中一共展示了Grid.generate_puzzle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getNewPuzzle
# 需要导入模块: from Grid import Grid [as 别名]
# 或者: from Grid.Grid import generate_puzzle [as 别名]
def getNewPuzzle():
global difficulty_setting
new_grid = Grid(db_read, difficulty_setting)
new_puzzle = new_grid.generate_puzzle()
clues = new_grid.clues
missing_letters = new_grid.missing_letters
#we return three things in the data - a new puzzle, a list of clues for that puzzle, and the missing letters to the answer of that puzzle
print missing_letters
return json.dumps({'puzzle': new_puzzle, 'clues': clues, 'answers' : missing_letters})