import platform
if platform.system() == 'Windows':
print("This is a Windows system.")
elif platform.system() == 'Linux':
print("This is a Linux system.")
else:
print("This is neither Windows nor Linux.")
Python-判断当前系统是linux还是windows
最新推荐文章于 2024-05-20 10:30:24 发布
本文介绍了如何在Python中使用platform模块来检测运行环境,通过条件语句判断是Windows、Linux还是其他系统。
摘要由CSDN通过智能技术生成