import ipywidgets as widgets
from IPython.display import display
w = widgets.Dropdown(
options={'Pen': 7732, 'Pencil': 102, 'Pad': 33331},
description='Item:',
)
display(w)
#w.value
results: Dropdown(description='Item:', options={'Pen': 7732, 'Pencil': 102, 'Pad': 33331}, value=7732)
which is not a Drop Down
HI i was working in linux jupyter notebook in Virtual enviroment
i have try solution from here Jupyter widget does not appear in notebook
and Interactive Jupyter Widgets not working in Jupyter Lab
any thought?
UPdate other library i added in other CELL:
from elasticsearch import Elasticsearch
import json
import pandas as pd
from pandas.io.json import json_normalize
import matplotlib.pyplot as plt
%matplotlib inline