Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
julenalvaro
/
space1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
julenalvaro
commited on
Jan 6, 2023
Commit
1aaa4ab
·
1 Parent(s):
1a6fb52
Cambio en app
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import streamlit as st
2
+
3
+
st.title("Mi primer app")
4
+
st.markdown("## Este es un subtitulo")
5
+
6
+
x = st.slider("Selecciona un valor") # 👈 this is a widget
7
+
st.write(x, "al cuadrado es", x * x)