Answers for "resize cmd using python"

0

resize cmd using python

# Automatically Resize Command Line Window using python
import os
os.system('mode con: cols=100 lines=40')
input("Press any key to continue...")


#for Python 3
Posted by: Guest on April-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language