Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Araeynn
/
lyre
like
1
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
Araeynn
commited on
Jan 28, 2024
Commit
80f9977
·
verified
·
1 Parent(s):
df834b6
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)
5
+
st.write(x, 'cubed is', x * x * x)