Python 中的 Curses 窗口无需清除终端

发布于 2024-10-20 15:26:48 字数 159 浏览 1 评论 0原文

有没有办法在Python中初始化curses而不清除终端中的现有文本?我的想法是,当我执行我的应用程序时,它要么将现有文本向上“推”并在屏幕底部执行,要么将自身绘制在现有文本上。我认为curses的newterm函数可以做到这一点,但它没有在Python中实现。还有其他方法吗?

Is there a way to initialize curses in Python without clearing the existing text in the terminal? What I have in mind is, that when I will execute my application, it will either "push" the existing text up and executes at the bottom of the screen, or will draw itself over the existing text. I think curses' newterm function can do that, but it isn't implemented in Python. Are there any other ways?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自演自醉 2024-10-27 15:26:48

对于简单的应用程序,例如当您只想使用颜色时,您可以尝试curses.setupterm 函数。以下示例使用curses在屏幕底部打印红色和绿色文本:

import curses

curses.setupterm()

black_bg = curses.tparm(curses.tigetstr("setab"), 0)
red = curses.tparm(curses.tigetstr("setaf"), 1)
green = curses.tparm(curses.tigetstr("setaf"), 2)
white = curses.tparm(curses.tigetstr("setaf"), 7)

print black_bg+white+"This is "+red+"red"+white
print "and this is "+green+"green"+white+"."

For simple applications, e.g. when you just want to use colour, you can try the curses.setupterm function. The following example uses curses to print red and green text at the bottom of the screen:

import curses

curses.setupterm()

black_bg = curses.tparm(curses.tigetstr("setab"), 0)
red = curses.tparm(curses.tigetstr("setaf"), 1)
green = curses.tparm(curses.tigetstr("setaf"), 2)
white = curses.tparm(curses.tigetstr("setaf"), 7)

print black_bg+white+"This is "+red+"red"+white
print "and this is "+green+"green"+white+"."
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文