pn23 commited on
Commit
bce29d2
·
verified ·
1 Parent(s): 01832db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import streamlit as st
2
 
3
 
4
- st.title("Welcome to Therapute")
5
 
6
  x = st.slider('Select a value')
 
7
  st.write(x, 'squared is', x * x)
 
1
  import streamlit as st
2
 
3
 
4
+ title = st.title("Welcome to Therapute")
5
 
6
  x = st.slider('Select a value')
7
+ st.write(title)
8
  st.write(x, 'squared is', x * x)