os.set_terminal_size:Python调整大小终端示例

时间:2024-05-08 11:59:55
【文件属性】:

文件名称:os.set_terminal_size:Python调整大小终端示例

文件大小:1KB

文件格式:ZIP

更新时间:2024-05-08 11:59:55

Python

import os import win32gui wnd = win32gui.GetForegroundWindow() def set_terminal_size(w, h): while True: nw, nh = os.get_terminal_size() x1, y1, w1, h1 = win32gui.GetWindowRect(wnd) if nw == w and nh == h: break else: if nw > w: win32gui.MoveWindow(wnd, x1, y1, w1 - x1 - 1, h1 - y1, True) elif nw < w:


【文件预览】:
os.set_terminal_size-main
----README.md(789B)
----main.py(806B)

网友评论