tix ComboBox issue with Python 3 tix ComboBox issue with Python 3 tkinter tkinter

tix ComboBox issue with Python 3


This page states that tix is deprecated in Python 3 and that ttk must be used.My new code is :

import tkinterfrom tkinter import ttkclass App(tkinter.Tk):    def __init__(self):        tkinter.Tk.__init__(self)        cmbbx = tkinter.ttk.Combobox()        cmbbx.pack()        self.mainloop()if __name__ == "__main__":    application = App()