joko333 commited on
Commit
dc15246
·
1 Parent(s): c4aa455

Add title to the Streamlit app

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. app.py +1 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
app.py CHANGED
@@ -1,4 +1,5 @@
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.title('My first app')
4
  x = st.slider('Select a value')
5
  st.write(x, 'squared is', x * x)