venuszhang commited on
Commit
cd538f3
·
1 Parent(s): 602bd6a

add application file

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import streamlit as st
2
+ x = st.slider('select a value')
3
+ st.write(x, 'squared is', x * x)
4
+