python中的os.uname()方法用于获取有关当前操作系统的信息。此方法以tuple-like对象的属性形式返回诸如名称,当前操作系统的版本和信息,网络上的计算机名称以及硬件标识符之类的信息。
用法: os.uname()
参数:不需要
返回类型:此方法返回一个tuple-like对象,该对象具有五个属性:
- 系统名称-操作系统名称
- 节点名-网络上的计算机名称(实现定义)
- 发布-操作系统版本
- 版-操作系统版本
- 机-硬件标识符
代码#1:使用os.uname()方法
# Python program to explain os.uname() method
# importing os module
import os
# Get the information of current
# operating system
os_info = os.uname()
# print the information
print(os_info)
输出:
posix.uname_result(sysname='Linux', nodename='pppContainer', release='4.4.0-1075-aws', version='#85-Ubuntu SMP Thu Jan 17 17:15:12 UTC 2019', machine='x86_64')
相关用法
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python os.fsync()用法及代码示例
- Python range()用法及代码示例
- Python os.fchown()用法及代码示例
- Python os.getpgid()用法及代码示例
- Python os.lchflags()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python os.openpty()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python os.chown()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.uname() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。