st.text_input - 显示文本输入框
streamlit的text_input
方法显示单行文本输入框。
方法原型
streamlit.text_input(label, value='', key=None)
参数:
- label:组件说明文本,字符串
- value:组件的输入文本
- key:组件ID
返回值:
text_input
方法返回文本输入框组件的当前内容。
示例代码
>>> title = st.text_input('Movie title', 'Life of Brian')
>>> st.write('The current movie title is', title)