Skip to content

Instantly share code, notes, and snippets.

@onjin
Created March 24, 2014 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onjin/9735687 to your computer and use it in GitHub Desktop.
Save onjin/9735687 to your computer and use it in GitHub Desktop.
get current terminal size on linux with python
import os
rows, columns = os.popen('stty size', 'r').read().split()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment