File size: 159 Bytes
01276c3 |
1 2 3 4 5 6 |
import streamlit as st
st.set_page_config(page_title='Observatory Dashboard', layout="wide")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x) |
01276c3 |
1 2 3 4 5 6 |
import streamlit as st
st.set_page_config(page_title='Observatory Dashboard', layout="wide")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x) |