Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ck46
/
tutorial
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ck46
commited on
Nov 11, 2021
Commit
f7eb969
·
1 Parent(s):
70ff220
Add application file
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
+