get terminal size python code example
Example 1: get_terminal_sizee python
from os import get_terminal_size
size = get_terminal_size() # Columns, Lines
Example 2: python console width
import os
rows, columns = os.popen('stty size', 'r').read().split()
Example 3: get terminal size python
import os
# you can do like this
columns, lines = os.get_terminal_size()
# or
size = os.get_terminal_size()
columns = size.columns
lines = size.lines