jiyachachan commited on
Commit
e12b1a4
·
1 Parent(s): 0388c48

uploading changes to template

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -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)