是否可以在 python 中绘制单个像素到命令提示符

Is it possible to draw a single pixel to command prompt in python

所以我想用 python 创建游戏引擎。 运行 在命令提示符下。

我想知道用什么方法绘制单个像素到命令提示符。

curses 可能会帮助您这样做,这是一个绘制点对角线的简单示例:

import time
import curses

window = curses.initscr()
for x in range(30):
    window.addch(x, x, ".")
window.refresh()
time.sleep(1)
curses.endwin()

请记住,终端有一个字符分辨率:您不能在任何地方放置像素。

但是您可以通过使用点以外的其他字符来进行欺骗,例如参见 [​​=13=] 演示:

apt install bb
DISPLAY= bb

(清除 DISPLAY 变量以强制它在您的终端内 运行)