how to minimisze python console

Solutions on MaxInterview for how to minimisze python console by the best coders in the world

showing results for - "how to minimisze python console"
Neele
15 Nov 2019
1import ctypes
2ctypes.windll.user32.ShowWindow( ctypes.windll.kernel32.GetConsoleWindow(), 6 )
Beau
08 Mar 2017
1# Python 3
2import ctypes
3ctypes.windll.user32.ShowWindow( ctypes.windll.kernel32.GetConsoleWindow(), 6 )
4