Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
lily-hust
/
jacaranda-app
like
0
Running
App
Files
Files
Community
lily-hust
commited on
Aug 3, 2023
Commit
cf19c0f
•
1 Parent(s):
b37a965
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
ADDED
Viewed
@@ -0,0 +1,3 @@
1
+
import streamlit as st
2
+
x = st.slider('Select a value')
3
+
st.write(x, 'squared is', x*x)