File size: 109 Bytes
b6f3de6
 
 
01256d1
1
2
3
4
import streamlit as st

x = st.slider('Select a value')
st.write(x, 'raised to the power of 3 is', x * x * x)