博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 获取操作系统平台、版本及架构
阅读量:5906 次
发布时间:2019-06-19

本文共 2465 字,大约阅读时间需要 8 分钟。

  hot3.png

platform模块提供了底层系统平台的相关信息

系统架构

32位还是64位

1
2
3
4
5
6
>>>importplatform
>>> platform.architecture()
('64bit','ELF')# python 3.3.2+ 64 bits on debian jessie 64 bits
('32bit','WindowsPE')# python 3.3.2 32 bits on windows 8.1 64 bits
('64bit','WindowsPE')# python 3.3.2 64 bits on wndows 8.1 64 bits
('64bit', '')# python 3.4.1 64 bits on mac os x 10.9.4

ELF和WindowsPE是可执行文件格式

操作系统

linux,mac还是windows

1
2
3
4
5
>>> platform.system()
'Linux'# python 3.3.2+ 64 bits on debian jessie 64 bits
'Windows'# python 3.3.2 32 bits on windows 8.1 64 bits
'Windows'# python 3.3.2 64 bits on windows 8.1 64 bits
'Darwin'# python 3.4.1 64 bits on mac os x 10.9.4

系统版本

1
2
3
4
5
>>> platform.version()
'#1 SMP Debian 3.10.11-1 (2013-09-10)'# python3.3.2+64bits on debian jessie64bits
'6.2.9200'# python 3.3.2 32 bits on windows 8.1 64 bits
'6.2.9200'# python 3.3.2 64 bits on windows 8.1 64 bits
'Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64'# python 3.4.1 64 bits on mac os x 10.9.4

CPU平台

1
2
3
4
5
>>> platform.machine()
'x86_64'# python 3.3.2+ 64 bits on debian jessie 64 bits
'AMD64'# python 3.3.2 32 bits on windows 8.1 64 bits
'AMD64'# python 3.3.2 64 bits on windows 8.1 64 bits
'x86_64'# python 3.4.1 64 bits on mac os x 10.9.4

linux发行版

1
2
>>> platform.dist()
('debian','jessie/sid', '')# python 3.3.2+ 64 bits on debian jessie 64 bits

节点名

也就是机器名

1
2
3
>>> platform.node()
'work'# python 3.3.2+ 64 bits on debian jessie 64 bits
'work-xxx'# python 3.3.2 32 bits on windows 8.1 64 bits

系统信息

1
2
3
4
5
6
7
>>> platform.uname()
uname_result(system='Linux', node='work', release='3.10-3-amd64', version='#1 SMP Debian 3.10.11-1 (2013-09-10)', machine='x86_64', processor='') # python3.3.2+64bits on debian jessie64bits
 
uname_result(system='Windows', node='work-xxx', release='8', version='6.2.9200', machine='AMD64', processor='Intel64 Family6Model58Stepping9,
GenuineIntel')# python 3.3.2 32 bits on windows 8.1 64 bits
 
uname_result(system='Darwin', node='mba', release='13.3.0', version='Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64', machine='x86_64', processor='i386')# python 3.4.1 64 bits on mac os x 10.9.4

python版本

1
2
3
>>> platform.python_verison()
'3.3.2+'# python 3.3.2+ 64 bits on debian jessie 64 bits
'3.3.3'# python 3.3.2 32 bits on windows 8.1 64 bits

原文链接 :http://openwares.net/linux/python_os_version_platform.html

转载于:https://my.oschina.net/hxily/blog/372911

你可能感兴趣的文章
企业实践用户邮箱导入/导出(第2部分)
查看>>
如何学习Linux命令-初级篇
查看>>
从Oracle Public Yum为Oracle Linux建立本地的Yum源
查看>>
静态路由和默认路由
查看>>
关于阿里开发者招聘节 |这5道笔试真题 你会吗!???
查看>>
C#的异常处理机制
查看>>
vsftp:500 OOPS: could not bind listening IPv4 sock
查看>>
Linux安装BTCPayServer并设置比特币BTC和Lightning支付网关
查看>>
mysql安装,远程连接,以及修改密码
查看>>
Mybatis查询返回Map类型数据
查看>>
java的深拷贝与浅拷贝
查看>>
程序员如何提高工作效率
查看>>
promise
查看>>
将Java应用部署到SAP云平台neo环境的两种方式
查看>>
数据批量导入Oracle数据库
查看>>
调用lumisoft组件发邮件 不需要身份验证 不需要密码
查看>>
DW 正则
查看>>
抓屏原理
查看>>
UNIX网络编程读书笔记:TCP输出、UDP输出和SCTP输出
查看>>
扩展 DbUtility (1)
查看>>