python 判断操作系统
时间: 2023-09-02 11:12:03 浏览: 172
可以使用 Python 的内置模块 `platform` 来判断操作系统。以下是一个示例代码:
```python
import platform
system = platform.system()
if system == "Windows":
print("Windows")
elif system == "Linux":
print("Linux")
elif system == "Darwin":
print("macOS")
else:
print("Other")
```
这个代码会输出当前操作系统的名称,如果是 Windows 就输出 `Windows`,如果是 Linux 就输出 `Linux`,如果是 macOS 就输出 `macOS`,否则就输出 `Other`。
阅读全文