Python| os.get_terminal_size() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.get_terminal_size()
方法用于查询终端的大小。此方法将终端的大小作为一对columns和lines返回。这里, columns表示终端窗口的宽度(以字符为单位),而lines表示终端窗口的高度(以字符为单位)。
Syntax: os.get_terminal_size(fd = STDOUT_FILENO)
Parameter:
fd (optional): A file descriptor. It specifies which file descriptor should be queried. The default value of fd parameter is STDOUT_FILENO or standard output.
Return Type: This method returns a object of class ‘os.terminal_size’ which holds columns and lines attributes.
代码:使用 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)