gpt4 book ai didi

python - 用于检测操作系统的 PyQt API

转载 作者:太空宇宙 更新时间:2023-11-04 01:39:54 25 4
gpt4 key购买 nike

我正在将一些代码从 C++/Qt 移植到 Python/PyQt。

我要做什么

#ifdef Q_OS_WIN
...
#else

是否有与 Qt 宏 Q_OS_WIN 等效的 PyQt?

最佳答案

为什么你想这样做而不是使用 Python sys.platform来自 sys 模块?

import sys
if sys.platform == 'win32':
print("win")
else:
print("winner!")

我必须提到 win32 即使你在 x64 python 上运行也是一样的。

关于python - 用于检测操作系统的 PyQt API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6166506/

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