Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
x = st.slider('Select a value')
|
4 |
-
st.write(x, 'squared is', x * x)
|
5 |
|
|
|
6 |
if st.button('Say hello'):
|
7 |
st.write('Why hello there')
|
8 |
else:
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
#x = st.slider('Select a value')
|
4 |
+
#st.write(x, 'squared is', x * x)
|
5 |
|
6 |
+
st.title('Armada Competition')
|
7 |
if st.button('Say hello'):
|
8 |
st.write('Why hello there')
|
9 |
else:
|