sys.platform
- Linux: 在 Linux 系统上,
sys.platform
通常返回'linux'
或'linux2'
。 - Windows: 在 Windows 系统上,它返回
'win32'
,不管是 32 位还是 64 位 Windows。 - macOS: 在 macOS 系统上,
sys.platform
返回'darwin'
。 - 其他 Unix 类系统: 在像 FreeBSD 这样的其他 Unix 类系统上,
sys.platform
可能返回系统的名称,例如'freebsd'
。 - 其他平台: 对于其他较少见的平台或者新的操作系统版本,
sys.platform
可能会有不同的返回值。