Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,13 @@
|
|
| 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 |
x = st.slider('Select a value')
|
| 4 |
+
st.write(x, 'squared is', x * x)
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
st.title ("this is the app title")
|
| 8 |
+
st.header("this is the markdown")
|
| 9 |
+
st.markdown("this is the header")
|
| 10 |
+
st.subheader("this is the subheader")
|
| 11 |
+
st.caption("this is the caption")
|
| 12 |
+
st.code("x=2021")
|
| 13 |
+
st.latex(r''' a+a r^1+a r^2+a r^3 ''')
|