赞
踩
我已经试着解决这个问题好几个小时了,但还是没有成功。我正在为学校作业用Python编写Connect4,我需要一个函数来检查电路板是否已满。在
这是我的init函数def __init__( self, width, height ):
self.width = width
self.height = height
self.data = [] # this will be the board
for row in range( self.height ):
boardRow = []
for col in range( self.width ):
boardRow += [' ']
self.data += [boardRow]
我的repr函数
^{pr2}$
我的全部功能def isFull(self):
# check if board is full
for row in range(0,(self.height-(self.height-1))):
for col in range(0,self.width):
if (' ') not in self.data[row][col]:
return True
我想检查一下数据列表中是否有这个“”(空格)。至少我认为这是我的问题,我对python没有经验,所以我可能误读了我的问题。如果有人有什么想法,我很乐意倾听。在
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。