chatgptsv commited on
Commit
968e5c2
1 Parent(s): 2d5eb57

Create Streamlit app.py

Browse files

git add app.py
git commit -m "Add application file"
git push

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