我正在開發一款遊戲的功能,如果單詞包含在電路板中,我會陷入必須返回的功能中。當它的假設爲True時,Python的shell返回一個False狀態。 這是我的身體funtion:這個身體功能有什麼問題?
def board_contains_word(board, word):
""" (list of list of str, str) -> bool
Return True if and only if word appears in board.
Precondition: board has at least one row and one column.
>>> board_contains_word([['A', 'N', 'T', 'T'], ['X', 'S', 'O', 'B']], 'ANT')
True
"""
for word_index in range(len(board)):
if word in board:
return True
return False
'爲word_index範圍內(LEN(板)):'什麼是'word_index'因爲你的'for'循環中使用它的意義呢? – roganjosh