📜  python代码示例中的sys模块

📅  最后修改于: 2022-03-11 14:46:55.454000             🧑  作者: 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...