os.machine()
- 返回 <string>
以字符串形式返回机器类型,例如 arm
、aarch64
、mips
、mips64
、ppc64
、ppc64le
、s390
、s390x
、i386
、i686
、x86_64
。
在 POSIX 系统上,机器类型是通过调用 uname(3)
来确定的。
在 Windows 上,使用 RtlGetVersion()
,如果不可用,则将使用 GetVersionExW()
。
有关更多信息,请参阅 https://en.wikipedia.org/wiki/Uname#Examples。
- Returns <string>
Returns the machine type as a string, such as arm
, aarch64
, mips
,
mips64
, ppc64
, ppc64le
, s390
, s390x
, i386
, i686
, x86_64
.
On POSIX systems, the machine type is determined by calling
uname(3)
. On Windows, RtlGetVersion()
is used, and if it is not
available, GetVersionExW()
will be used. See
https://en.wikipedia.org/wiki/Uname#Examples for more information.