Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jgwill
/
nalit-x2409b-streamlit
like
0
Sleeping
App
Files
Files
Community
jgwill
commited on
Sep 2, 2024
Commit
14c03d7
·
1 Parent(s):
a0e4cb8
dummy
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
+