当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.get_terminal_size()用法及代码示例


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)

Terminal Size



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.get_terminal_size() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。