CRA-GenAI-Demo / app.py
Colton Loftus
another commit
060a282
raw
history blame contribute delete
124 Bytes
import streamlit as st
x = st.slider("Select a value")
st.write(x, "squared is", x * x)
st.write(x, "cubed is", x * x * x)