Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
venuszhang
/
venustest
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
venuszhang
commited on
Jan 31, 2023
Commit
cd538f3
·
1 Parent(s):
602bd6a
add application file
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import streamlit as st
2
+
x = st.slider('select a value')
3
+
st.write(x, 'squared is', x * x)
4
+