willsonlincake 发表于 2022-4-5 00:25:16

Python国际象棋库

https://www.geeksforgeeks.org/chess-library-in-python/

# import required module
import chess

# create board object
board=chess.Board()

# display chess board
print(board)
页: [1]
查看完整版本: Python国际象棋库