gpt4 book ai didi

Python Ctype 标题不同语言

转载 作者:行者123 更新时间:2023-12-01 09:27:52 25 4
gpt4 key购买 nike

为什么我做的标题变成中文了?

import ctypes
Title = "Test"
ctypes.windll.kernel32.SetConsoleTitleW(Title)

为什么我执行代码时是中文

最佳答案

SetConsoleTitleW 需要一个 unicode 字符串。如果您使用的是 2.7 或更低版本,"Test" 不是 unicode 字符串。尝试:

import ctypes
Title = u"Test"
ctypes.windll.kernel32.SetConsoleTitleW(Title)

或者,使用 SetConsoleTitleA,它接受 ANSI 字节。

import ctypes
Title = "Test"
ctypes.windll.kernel32.SetConsoleTitleA(Title)

关于Python Ctype 标题不同语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50219432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com