This string contains a platform identifier that can be used to append platform-specific components to sys.path, for instance.
sys.platform
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...