import streamlit as st st.title('First site') st.header('This is a header') hobby = st.selectbox("Hobby",['Writing','Badminton','Bouldering']) if st.button("Click me for a compliment"): st.write("Wow, "+hobby.lower()+" is a wonderful hobby to have")