Spaces:
Runtime error
Runtime error
Commit
·
0c87eb4
1
Parent(s):
58b2e8b
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
import streamlit as st
|
2 |
|
|
|
|
|
|
|
3 |
x = st.slider('Select a value')
|
4 |
st.write(x, 'squared is', x * x)
|
5 |
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
x = st.header("Welcome to the STEM NLP application!")
|
4 |
+
st.write(x)
|
5 |
+
|
6 |
x = st.slider('Select a value')
|
7 |
st.write(x, 'squared is', x * x)
|
8 |
|