私はpythonが初めてです。エラーが発生しました
while not cls.isFilled(row,col,myMap):
TypeError: 'bool' object is not callable
この問題を解決する方法を教えてください。最初の「if」チェックは問題ありませんが、「while not」にはこのエラーがあります。
def main(cls, args):
...
if cls.isFilled(row,col,myMap):
numCycles = 0
while not cls.isFilled(row,col,myMap):
numCycles += 1
def isFilled(cls,row,col,myMap):
cls.isFilled = True
## for-while
i = 0
while i < row:
## for-while
j = 0
while j < col:
if not myMap[i][j].getIsActive():
cls.isFilled = False
j += 1
i += 1
return cls.isFilled