当前位置:   article > 正文

python 检测列表中是否有空值,Python检查二维列表中是否有空字符串?

判断二维列表 空

我已经试着解决这个问题好几个小时了,但还是没有成功。我正在为学校作业用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没有经验,所以我可能误读了我的问题。如果有人有什么想法,我很乐意倾听。在

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/698203
推荐阅读
相关标签
  

闽ICP备14008679号