检查特定列表条目和其余列表条目

时间:2015-01-17 17:10:54

标签: python list loops tkinter multidimensional-array

我正在制作一个数独游戏,我需要能够检查输入的数字是否已经在行中或已经存在于冲突列中。现在,这正在改变所有种子值的背景。如何检查特定条目并查看它是否已存在行或列中?

  #nums_list is a 2_d list of the Entry widget id tags
  #check_list are the 0's and digits of the seed values
  def check_conf(self):
    for r in range(0, self.height, 1):
        for c in range(0, self.width, 1):
            if self.nums_list[r][c].get().isdigit():
                if int(self.nums_list[r][c].get()) == int(self.check_list[r][c]):
                    self.nums_list[r][c].config(background = 'red')

http://pastebin.com/Mmmh6JM4

的完整代码

0 个答案:

没有答案