Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manamama
/
StreamLit1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Manamama
commited on
Apr 14, 2023
Commit
b6cacc2
·
1 Parent(s):
9e316e7
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
2
+
import streamlit as st
3
+
4
+
x = st.slider('Select a value')
5
+
st.write(x, 'squared is', x * x)