0

I have installed the latest ipywidgets version 7.5.1 and I use Jupyter nb version 6.0.2. Other ipywidgets work well. But I do not get any output with the Combobox. No error messages.

widgets.Combobox(# value='John', placeholder='Choose Someone', options=['Paul', 'John', 'George', 'Ringo'], description='Combobox:', ensure_option=True, disabled=False)
phwt
  • 1,356
  • 1
  • 22
  • 42
arr0w
  • 41
  • 1
  • 6

1 Answers1

0

You have to remove the # inside the Combobox parenthesis.

Try executing this command:

widgets.Combobox(value='John', placeholder='Choose Someone', options=['Paul', 'John', 'George', 'Ringo'], description='Combobox:', ensure_option=True, disabled=False)
ngShravil.py
  • 4,742
  • 3
  • 18
  • 30