Spaces:
Configuration error
Configuration error
maduvantha
commited on
Commit
·
175bc30
1
Parent(s):
8e5fc31
Update app.py
Browse files
app.py
CHANGED
@@ -4,10 +4,10 @@ import numpy as np
|
|
4 |
import matplotlib.pyplot as plt
|
5 |
|
6 |
# Create some example data
|
7 |
-
|
8 |
-
'x': range(100),
|
9 |
-
'y': np.random.randn(100)
|
10 |
-
})
|
11 |
|
12 |
-
#
|
13 |
-
st.
|
|
|
|
|
|
|
|
4 |
import matplotlib.pyplot as plt
|
5 |
|
6 |
# Create some example data
|
7 |
+
st.write("Hello, World!")
|
|
|
|
|
|
|
8 |
|
9 |
+
# display HTML
|
10 |
+
st.write("<h1>Hello, World!</h1>", unsafe_allow_html=True)
|
11 |
+
|
12 |
+
# display Markdown
|
13 |
+
st.write("# Hello, World!")
|