Comment redimensionner les fenêtres dans Python

import pygetwindow
win = pygetwindow.getWindowsWithTitle('Notepad')[0]
win.size = (640, 400)
Star