CCC / app.py
noumanjavaid's picture
Add Application file
1e6410a verified
raw
history blame
No virus
90 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)