File size: 253 Bytes
efab03b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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")