在Python中,你可以使用 platform
模块来判断当前的操作系统。以下是一个示例代码:
import platform
# 获取当前操作系统
current_os = platform.system()
# 打印当前操作系统
print(f"Current operating system: {current_os}")
# 判断当前操作系统
if current_os == "Windows":
print("This is a Windows environment.")
elif current_os == "Linux":
print("This is a Linux environment.")
else:
print("This is neither Windows nor Linux.")
在上述示例中,platform.system()
返回当前操作系统的名称。然后,通过判断返回值,你可以确定当前环境是 Windows 还是 Linux。