st.selectbox - 显示列表选择框
streamlit的selectbox
显示列表选择框组件。
方法原型
streamlit.selectbox(label, options, index=0, format_func=<class 'str'>, key=None)
参数:
- label:选择框说明文本,字符串
- options:选项列表,可以是以下类型:
- list
- tuple
- numpy.ndarray
- pandas.Series
- index:选中的选项的序号,整数
- format_func:选项显示格式化函数
- key:选择框组件的ID
返回值:
selectbox
方法返回选中的选项。
示例代码
>>> option = st.selectbox(
... 'How would you like to be contacted?',
... ('Email', 'Home phone', 'Mobile phone'))
>>>
>>> st.write('You selected:', option)