一尘不染

如何识别 Python 在哪个操作系统上运行?

python

如何识别 Python 在哪个操作系统上运行?


阅读 68

收藏
2022-09-28

共1个答案

一尘不染

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'

输出platform.system()如下:

  • Linux: Linux
  • Mac: Darwin
  • Windows: Windows

See: platform — Access to underlying platform’s identifying data

2022-09-28