GPT-NI / Streamlit
moin1234's picture
Create Streamlit
2788f83
Raw
History Blame Contribute Delete
88 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)