shutil.get_terminal_size(fallback=(columns, lines))
Get the size of the terminal window.
For each of the two dimensions, the environment variable, COLUMNS
and LINES
respectively, is checked. If the variable is defined and the value is a positive integer, it is used.
When COLUMNS
or LINES
is not defined, which is the common case, the terminal connected to sys.__stdout__
is queried by invoking os.get_terminal_size()
.
If the terminal size cannot be successfully queried, either because the system doesn’t support querying, or because we are not connected to a terminal, the value given in fallback
parameter is used. fallback
defaults to (80, 24)
which is the default size used by many terminal emulators.
The value returned is a named tuple of type os.terminal_size
.
See also: The Single UNIX Specification, Version 2, Other Environment Variables.
Please login to continue.