Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。
os.get_terminal_size()
Python中的方法用於查詢終端的大小。此方法以成對的列和行的形式返回終端的大小。此處,列以字符表示終端窗口的寬度,而線以字符表示終端窗口的高度。
用法: os.get_terminal_size(fd = STDOUT_FILENO)
參數:
fd(可選):文件描述符。它指定應查詢哪個文件描述符。 fd參數的默認值為STDOUT_FILENO或標準輸出。
返回類型:此方法返回類“ os.terminal_size”的對象,該對象包含列和行屬性。
代碼:使用os.get_terminal_size()方法
# Python program to explain os.get_terminal_size() method
# importing os module
import os
# Get the size
# of the terminal
size = os.get_terminal_size()
# Print the size
# of the terminal
print(size)
輸出:
os.terminal_size(columns=80, lines=24)
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python hasattr()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python PIL putalpha()用法及代碼示例
注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.get_terminal_size() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。