Spaces:
Runtime error
Runtime error
Prakash N commited on
Commit ·
0feaf78
1
Parent(s): 732fdf3
added header
Browse files
app.py
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
|
|
|
|
|
|
| 3 |
x = st.slider('Select a value')
|
| 4 |
st.write(x, ' squared is', x * x)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
st.header("This is our app")
|
| 4 |
+
|
| 5 |
x = st.slider('Select a value')
|
| 6 |
st.write(x, ' squared is', x * x)
|