pinsu commited on
Commit
05bf055
1 Parent(s): 4449fb0

Update app.py

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