app / app.py
michaelpiro1's picture
Update app.py
2879cb0 verified
raw
history blame
704 Bytes
import streamlit as st
add_selectbox = st.sidebar.selectbox(
'How would you like to be contacted?',
('Email', 'Home phone', 'Mobile phone')
)
# Add a slider to the sidebar:
add_slider = st.sidebar.slider(
'Select a range of values',
0.0, 100.0, (25.0, 75.0)
)
with st.container():
st.write("This is inside the container")
col1, col2, col3 = st.columns(3)
with col1:
st.header("A cat")
st.audio("goodres.wav", format="audio/mpeg", loop=False)
with col2
st.header("a dog")
st.audio("goodres.wav", format="audio/mpeg", loop=False)
with col3
st.header("a pumpkin")
st.audio("goodres.wav", format="audio/mpeg", loop=False)