sys.platform

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