How to get the size of the console. Useful to know when you want to control the display!
>>> import os >>> os.popen('stty size').read().split() ['30', '80']
Recommended Posts