gpt4 book ai didi

python - (n) python 中的 curses pad 不工作

转载 作者:太空狗 更新时间:2023-10-29 23:55:22 24 4
gpt4 key购买 nike

我似乎无法让 ncurses 垫在 python(2.6、2.7 和 3.2)中工作。直接使用 http://docs.python.org/howto/curses.html 的代码我什至无法让它工作。非填充代码完美运行。

import curses

def func(scr):
pad = curses.newpad(100, 100)
pad.addstr(0,0, "Testing")

# Displays a section of the pad in the middle of the screen
pad.refresh( 0,0, 5,5, 10,10)

scr.refresh()
scr.getch()

if __name__ == '__main__':
curses.wrapper(func)

问题是什么?取下垫子(并将垫子换成 scr)效果很好

最佳答案

你正在覆盖垫。尝试从 pad 对象而不是主窗口对象 scr 调用 getch 方法并删除 scr.refresh .

关于python - (n) python 中的 curses pad 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12442965/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com