📜  Python| os.get_terminal_size() 方法

📅  最后修改于: 2022-05-13 01:54:54.136000             🧑  作者: Mango

Python| os.get_terminal_size() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.get_terminal_size()方法用于查询终端的大小。此方法将终端的大小作为一对columnslines返回。这里, columns表示终端窗口的宽度(以字符为单位),而lines表示终端窗口的高度(以字符为单位)。

代码:使用 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)

端子尺寸