I've been trying to find the width of my screen, but nothing seems to work, How can I find it?
I assume you mean the width of the terminal. For that, just do:
import os rows, columns = os.popen('stty size', 'r').read().split()
I assume you mean the width of the terminal. For that, just do: