how to input a string in streamlit

Solutions on MaxInterview for how to input a string in streamlit by the best coders in the world

showing results for - "how to input a string in streamlit"
Thibaud
19 Oct 2019
1>>> title = st.text_input('Movie title', 'Life of Brian')
2>>> st.write('The current movie title is', title)
3