Python 修改命令行窗口的标题

import ctypes

def set_console_title(new_title):
    ctypes.windll.kernel32.SetConsoleTitleW(new_title)

if __name__ == "__main__":
    # 修改命令行窗口标题为 "新的窗口标题"
    set_console_title("新的窗口标题")

    # 添加其他脚本逻辑

 

posted on 2024-01-18 11:04  shaomine  阅读(234)  评论(0编辑  收藏  举报