pycharm图片显示棋盘
时间: 2023-07-02 10:07:29 浏览: 151
你可以使用 Python 的 Pillow 库来生成一个棋盘图片并在 PyCharm 中显示。
首先,安装 Pillow 库:
```
pip install Pillow
```
然后,可以使用以下代码生成一个棋盘图片:
```python
from PIL import Image, ImageDraw
size = 400
squares = 8
square_size = size // squares
im = Image.new('RGB', (size, size), 'white')
draw = ImageDraw.Draw(im)
for i in range(squares):
for j in range(squares):
color = 'white' if (i+j) % 2 == 0 else 'black'
draw.rectangle((i*square_size, j*square_size, (i+1)*square_size, (j+1)*square_size), fill=color)
im.show()
```
这将生成一个 8x8 的棋盘图片,并在 PyCharm 中显示出来。你可以根据需要更改 `squares` 和 `size` 变量来生成不同大小和不同方格数的棋盘图片。
阅读全文