Reputation: 4695
Is there any way to hide python shell while using a tkinter window or turtle window? While opening py file by clicking the py shell shows every time but I don't need it.
Upvotes: 2
Views: 633
Reputation: 91139
Start your Python program using pythonw.exe
instead of python.exe
. This is specifically designed for this.
Upvotes: 4