Working on a small project for a currency converter using Tkinter for a gui. I have the below code but it seems I have an error in combobox as it throws an error.
What am I missing?
Currency1_value=0
Entry1=Entry(window,textvariable=Currency1_value)
Entry1.grid(row=1,column=0)
CurrencyCombo=Combobox(window, state="readonly", values=("one", "two", "three"))
CurrencyCombo.grid(row=1,column=1)