I am making a text-based CMD application in Python.
And I'd like it to resize the Command prompt to a more square, Text-based adventure-like, form.
So I found this:
os.system("mode con cols=93 lines=45")
However that's definitive and once set the user can no longer scroll on the CMD or resize the app.
So it makes it impossible for the user to read any bit of long text. Is there anyway to add an auto-scroll to the cmd or to resize the cmd without making it unusable?