AttributeError: module 'chess' has no attribute 'Board' chess board error
AttributeError: module 'chess' has no attribute 'Board' chess board error
我正在下棋 python 我有这个错误
这是我的代码:
import chess.board
board=chess.Board()
board
全部错误:
Traceback (most recent call last):
File "chess.py", line 1, in <module>
import chess
File "D:\Websites\repoting\chess.py", line 3, in <module>
board=chess.Board()
AttributeError: module 'chess' has no attribute 'Board'
如果你 import chess
你可以使用 chess.Board()
。但是如果你 import chess.Board
你只能使用来自模块 chess
的 Board()
。我希望这对您和所有阅读此答案的人有所帮助。
我正在下棋 python 我有这个错误
这是我的代码:
import chess.board
board=chess.Board()
board
全部错误:
Traceback (most recent call last):
File "chess.py", line 1, in <module>
import chess
File "D:\Websites\repoting\chess.py", line 3, in <module>
board=chess.Board()
AttributeError: module 'chess' has no attribute 'Board'
如果你 import chess
你可以使用 chess.Board()
。但是如果你 import chess.Board
你只能使用来自模块 chess
的 Board()
。我希望这对您和所有阅读此答案的人有所帮助。