Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 curses.newwin() 命令时,例如
curses.newwin(10, 10, 0, 0)
如果我尝试编辑整数以创建更大的窗口,则程序在我尝试运行时终止。
正如评论所提到的,您不能制作比父终端更大的窗口。如果您正在寻找一种方法来调整终端本身的大小,请考虑这样的事情:
os.system("mode con cols=80 lines=60") os.environ['COLS'] = "80" os.environ['LINES'] = "60"
这将改变控制台大小。您可以将大小更改为您喜欢的任何大小,只需根据需要更改列和行。第一行设置了底部两个的上限——如果其中一个较低的数字更大,你会抛出一个错误。