xiaoqianran commited on
Commit
e8eba5b
·
1 Parent(s): 101bd3a

Add application file

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