Washedashore commited on
Commit
23d3514
·
verified ·
1 Parent(s): d3f5bd2

Create Stream

Browse files
Files changed (1) hide show
  1. Stream +4 -0
Stream 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)