sschet commited on
Commit
574f5b4
1 Parent(s): 501c899
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. app.py +4 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider('Select a value')
4
+ st.write(x, 'squared is', x * x)