gpt4 book ai didi

python-3.x - 用python检测操作系统

转载 作者:行者123 更新时间:2023-12-03 22:49:55 26 4
gpt4 key购买 nike

我四处寻找解决问题的方法,我能找到的最好的方法是:

from sys import platform
if platform == "linux" or platform == "linux2":
# linux
elif platform == "darwin":
# OS X
elif platform == "win32":
# Windows...
有谁知道我如何将 Linux PC 与 android 区分开来,因为 android 是基于 Linux 的。如果这是可能的,我怎么能区分 Mac OS 和 iOS

最佳答案

使用 platform 模块:

import platform
print(platform.system())
print(platform.release())
print(platform.version())

请注意,在 Mac 上运行的系统将为 platform.system() 返回“Darwin”。
platform.platform()将返回非常详细的数据,例如
'Linux-3.3.0-8.fc16.x86_64-x86_64-with-fedora-16-Verne'

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

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