简单的问题,但我做错了什么,不知道是什么:(我正在使用 python-chess 库并希望将最佳移动打印到引擎(Stockfish)。
我可以从引擎打印分数
board = chess.Board(fen)
info = engine.analyse(board, chess.engine.Limit(time=0.1))
print(info["score"])
但我无法打印动作
best_move = chess.engine.PlayResult(chess.Move, chess.engine.Limit(time=0.1), draw_offered=False, resigned=False, )
我总是得到这样的结果:PlayResult at 0x1ef108495e0
文档(https://python-chess.readthedocs.io/en/latest/_modules/chess/engine.html#Protocol搜索“最佳移动”)没有帮助,总是会出现一些错误。