Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
easynet
/
README
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
boqiangliang
commited on
Apr 12, 2024
Commit
7b17e53
·
1 Parent(s):
5d23a44
Add application file
Browse files
Files changed (1)
hide
show
Streamlit
+5
-0
Streamlit
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
+