Rocky commited on
Commit
c404da0
·
1 Parent(s): 622f7bb

Add app file

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("Test")
4
+ st.info("Info......Info.....")
5
+ x = st.slider('Select a value')
6
+
7
+ st.write(x, 'squared is', x * x)