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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。