📌  相关文章
📜  python curses 调整窗口大小 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:50.880000             🧑  作者: Mango

代码示例1
if stdscr.getch() == curses.KEY_RESIZE:
    curses.resizeterm(*stdscr.getmaxyx())
    stdscr.clear()
    stdscr.refresh()