scify-demo / app.py
ykl7's picture
dummy change to test git hook
01256d1
raw
history blame
109 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'raised to the power of 3 is', x * x * x)