hamidfzm
hamidfzm

Reputation: 4695

Hide python shell while using tkinter window

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

Answers (1)

glglgl
glglgl

Reputation: 91139

Start your Python program using pythonw.exe instead of python.exe. This is specifically designed for this.

Upvotes: 4

Related Questions