cara meminimalkan jendela tkinter

import Tkinter

w = Tkinter.Tk()
w.wm_state('iconic')

#or

w.iconify()
Filthy Flamingo