first / app.py.1
huaqianshu_z
Add application file
5cc58b0
raw
history blame contribute delete
90 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)