zergswim commited on
Commit
a7418a6
1 Parent(s): d13e1ee

Update app.py

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