jiyachachan moiralala commited on
Commit
4049a35
·
verified ·
1 Parent(s): 6fa7ae9

add app.py (#3)

Browse files

- add app.py (d92d857db0566a4b33e1eebef73b3933bbd595ca)


Co-authored-by: Chenzhao Wang <moiralala@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +4 -0
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)