Comment ouvrir CMD à une taille spécifique en utilisant Python

import os
os.system('mode con: cols=100 lines=40')
input("Press any key to continue...")
Good Goat