根据官方文档的解释(https://docs.python.org/3.5/library/platform.html#module-platform):

学习其他人的代码如下:

# python platform

# Author   :   Hongten
# Mailto : hongtenzone@foxmail.com
# Blog : http://www.cnblogs.com/hongten
# QQ : 648719819
# Version : 1.0
# Create : 2013-08-28 import platform '''
python中,platform模块给我们提供了很多方法去获取操作系统的信息
如:
import platform
platform.platform() #获取操作系统名称及版本号,'Windows-7-6.1.7601-SP1'
platform.version() #获取操作系统版本号,'6.1.7601'
platform.architecture() #获取操作系统的位数,('32bit', 'WindowsPE')
platform.machine() #计算机类型,'x86'
platform.node() #计算机的网络名称,'hongjie-PC'
platform.processor() #计算机处理器信息,'x86 Family 16 Model 6 Stepping 3, AuthenticAMD'
platform.uname() #包含上面所有的信息汇总,uname_result(system='Windows', node='hongjie-PC',
release='7', version='6.1.7601', machine='x86', processor='x86 Family
16 Model 6 Stepping 3, AuthenticAMD') 还可以获得计算机中python的一些信息:
import platform
platform.python_build()
platform.python_compiler()
platform.python_branch()
platform.python_implementation()
platform.python_revision()
platform.python_version()
platform.python_version_tuple()
''' # global var
# 是否显示日志信息
SHOW_LOG = True def get_platform():
'''获取操作系统名称及版本号'''
return platform.platform() def get_version():
'''获取操作系统版本号'''
return platform.version() def get_architecture():
'''获取操作系统的位数'''
return platform.architecture() def get_machine():
'''计算机类型'''
return platform.machine() def get_node():
'''计算机的网络名称'''
return platform.node() def get_processor():
'''计算机处理器信息'''
return platform.processor() def get_system():
'''获取操作系统类型'''
return platform.system() def get_uname():
'''汇总信息'''
return platform.uname() def get_python_build():
''' the Python build number and date as strings'''
return platform.python_build() def get_python_compiler():
'''Returns a string identifying the compiler used for compiling Python'''
return platform.python_compiler() def get_python_branch():
'''Returns a string identifying the Python implementation SCM branch'''
return platform.python_branch() def get_python_implementation():
'''Returns a string identifying the Python implementation. Possible return values are: ‘CPython’, ‘IronPython’, ‘Jython’, ‘PyPy’.'''
return platform.python_implementation() def get_python_version():
'''Returns the Python version as string 'major.minor.patchlevel'
'''
return platform.python_version() def get_python_revision():
'''Returns a string identifying the Python implementation SCM revision.'''
return platform.python_revision() def get_python_version_tuple():
'''Returns the Python version as tuple (major, minor, patchlevel) of strings'''
return platform.python_version_tuple() def show_python_all_info():
'''打印python的全部信息'''
print('The Python build number and date as strings : [{}]'.format(get_python_build()))
print('Returns a string identifying the compiler used for compiling Python : [{}]'.format(get_python_compiler()))
print('Returns a string identifying the Python implementation SCM branch : [{}]'.format(get_python_branch()))
print('Returns a string identifying the Python implementation : [{}]'.format(get_python_implementation()))
print('The version of Python : [{}]'.format(get_python_version()))
print('Python implementation SCM revision : [{}]'.format(get_python_revision()))
print('Python version as tuple : [{}]'.format(get_python_version_tuple())) def show_python_info():
'''只打印python的信息,没有解释部分'''
print(get_python_build())
print(get_python_compiler())
print(get_python_branch())
print(get_python_implementation())
print(get_python_version())
print(get_python_revision())
print(get_python_version_tuple()) def show_os_all_info():
'''打印os的全部信息'''
print('获取操作系统名称及版本号 : [{}]'.format(get_platform()))
print('获取操作系统版本号 : [{}]'.format(get_version()))
print('获取操作系统的位数 : [{}]'.format(get_architecture()))
print('计算机类型 : [{}]'.format(get_machine()))
print('计算机的网络名称 : [{}]'.format(get_node()))
print('计算机处理器信息 : [{}]'.format(get_processor()))
print('获取操作系统类型 : [{}]'.format(get_system()))
print('汇总信息 : [{}]'.format(get_uname())) def show_os_info():
'''只打印os的信息,没有解释部分'''
print(get_platform())
print(get_version())
print(get_architecture())
print(get_machine())
print(get_node())
print(get_processor())
print(get_system())
print(get_uname()) def test():
print('操作系统信息:')
if SHOW_LOG:
show_os_all_info()
else:
show_os_info()
print('#' * 50)
print('计算机中的python信息:')
if SHOW_LOG:
show_python_all_info()
else:
show_python_info() def init():
global SHOW_LOG
SHOW_LOG = True def main():
init()
test() if __name__ == '__main__':
main()

最新文章

  1. div 加载 html页面的方法
  2. javascript 实现des解密加密
  3. Emgu.CV/opencv 绘图 线面文字包括中文
  4. 43、哈工大NLP自然语言处理,LTP4j的测试+还是测试
  5. 网络爬虫2--PHP/CURL库(client URL Request Library)
  6. JavaScript基础——理解变量作用域
  7. 下载pdf_不同操作系统,无法正常下载(兼容性问题)
  8. How to copy files between sites using JavaScript REST in Office365 / SharePoint 2013
  9. 获取和设置localStorage
  10. 【web】web欢迎页面执行servlet
  11. 排序 O(nlogn)
  12. 调侃Cookie
  13. 《linux内核完全剖析》笔记03-进程创建
  14. 项目中 添加 swift代码 真机调试 错误
  15. Node.js 入门简介
  16. Orchard Core Framework:ASP.NET Core 模块化,多租户框架
  17. IDEA调用其它模块module的类方法
  18. Kafka如何删除topic?
  19. poj2449 第k短路
  20. K - Video Reviews Gym - 101755K (二分)

热门文章

  1. Altium Designer多原理图、PCB更新处理
  2. nodejs安装&bower 安装
  3. web项目中获取spring的bean对象
  4. 超轻量级异步JS框架,别再让嵌套影响我们的优雅代码!
  5. 关于在虚拟机上安装iOS所遇到的问题
  6. Robot Framwork +Selenium2环境搭建
  7. Canvas 图片平铺设置
  8. Unity-SendMessage
  9. Thread 多线程 同步
  10. selenium webdriver——JavaScript警告窗处理