Hi, im trying to figure out how to call a function's variable
from here
def legal_moves(board):
moves = []
for square in range(DINNER):
if board [square] == SPACE:
moves.append(square)
return moves
I want to take the variable moves and use it for main
How would I do that?