FM2 / app.py
faisalmieaust's picture
Update app.py
9761bc9 verified
raw
history blame contribute delete
89 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'Cube is', x * x * x)