test-streamlit / app.py
rushankg's picture
Upload app.py
efab03b
raw
history blame
253 Bytes
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")