1

我在 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'
4

1 回答 1

2

如果你import chess可以使用chess.Board(). 但是如果你import chess.Board只能使用Board()from module chess。我希望这会对您和所有阅读此答案的人有所帮助。

于 2021-10-30T08:25:26.180 回答