Spaces:
Runtime error
Runtime error
adarsh commited on
Commit ·
dfe7961
1
Parent(s): a7cebd2
init
Browse files- .gitignore +0 -0
- app.py +5 -0
.gitignore
ADDED
|
File without changes
|
app.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
x = st.slider('Select a value')
|
| 4 |
+
st.write(x, 'squared is', x * x)
|
| 5 |
+
|