Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jiyachachan
/
Streamlit
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
jiyachachan
commited on
Nov 16, 2024
Commit
e12b1a4
·
1 Parent(s):
0388c48
uploading changes to template
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
import altair as alt
3
+
4
+
st.markdown("# My first App")
5
+
6
+
x= st.slider('x', 1, 10, 5)
7
+
8
+
st.write("X is equal to :", x)