stream1 / app.py
osaaso's picture
Update app.py
8f56503
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
#exec(open("https://raw.githubusercontent.com/streamlit/demo-uber-nyc-pickups/main/streamlit_app.py").read())