更改Python中的cmd提示符大小

问题描述 投票:0回答:2

我正在用 Python 制作一个基于文本的 CMD 应用程序。

我希望它将命令提示符的大小调整为更方形、基于文本的类似冒险的形式。

所以我发现了这个:

os.system("mode con cols=93 lines=45")

但是,这是确定的,一旦设置,用户就无法再在 CMD 上滚动或调整应用程序的大小。

因此这使得用户无法阅读任何长文本。无论如何,是否可以向 cmd 添加自动滚动或调整 cmd 大小而不使其无法使用?

python python-3.x cmd command-line-interface python-cmd
2个回答
4
投票

使用win32 API,可以避免丢失滚动:

from ctypes import windll, byref
from ctypes.wintypes import SMALL_RECT

STDOUT = -11

hdl = windll.kernel32.GetStdHandle(STDOUT)
rect = wintypes.SMALL_RECT(0, 50, 50, 80) # (left, top, right, bottom)
windll.kernel32.SetConsoleWindowInfo(hdl, True, byref(rect))

0
投票

不 就这样吧

import os
os.system('mode con lines=25 cols=134')
© www.soinside.com 2019 - 2024. All rights reserved.