📜  python sys - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:57.694000             🧑  作者: Mango

代码示例3
if sys.platform.startswith('freebsd'):
    # FreeBSD-specific code here...
elif sys.platform.startswith('linux'):
    # Linux-specific code here...
elif sys.platform.startswith('aix'):
    # AIX-specific code here...