在Tkinter中,我们可以画几个shapes。但是如果我们只想画一个像素呢?

最佳答案

创建Canvas对象后,可以绘制一条跨越单个像素的线。

your_canvas_widget.create_line(x, y, x + 1, y)

07-24 21:46