2020
10-10
10-10
python利用platform模块获取系统信息
Pythonplatform模块platform模块用于查看当前操作系统的信息,来采集系统版本位数计算机类型名称内核等一系列信息。使用方法:#coding:utf-8importplatformt=platform.system()print(t)#coding=utf-8#platform_mode.pyimportplatform'''python中,platform模块给我们提供了很多方法去获取操作系统的信息如:importplatformplatform.platform()#获取操作系统名称及版本号,'Linux-3.13.0-46-generic-i686-wit...
继续阅读 >