AIchatexample / App.py
Akhilmsd's picture
Upload App.py
ddf7837
raw
history blame contribute delete
No virus
91 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'cubed is', x * x * x)