In windows, if I make a very simple tkinter program like:
from Tkinter import *
root = Tk()
label = Label(root,text ="hello")
label.pack()
root.mainloop()
There will be a window showing the "hello" label, and another windows that looks like a dos prompt behind it. Is it possible to get rid of this prompt like window?
from Tkinter import *
root = Tk()
label = Label(root,text ="hello")
label.pack()
root.mainloop()
There will be a window showing the "hello" label, and another windows that looks like a dos prompt behind it. Is it possible to get rid of this prompt like window?
Comment