Automatically Resize Command Line Window
#!/usr/bin/env python3
import os
os.system('mode con: cols=100 lines=40')
input("Press any key to continue...")
#!/usr/bin/env python3
import os
os.system('mode con: cols=100 lines=40')
input("Press any key to continue...")