testSpace / testStreamlit.py
이상정
testStreamlit.py
b2a455e
raw
history blame
No virus
117 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.title('Hello Streamlit')