wgcv commited on
Commit
d14459f
1 Parent(s): 4bc8bbf

First demo, ok i worked with this few years ago the second

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("This is a demo")
4
+ st.markdown("This is a description")
5
+ x = st.slider("Put a number")
6
+
7
+ st.write(x, "The square is", x*x)