Spaces:
Runtime error
Runtime error
File size: 270 Bytes
2917b9c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# Create some example data
st.write("Hello, World!")
# display HTML
st.write("<h1>Hello, World!</h1>", unsafe_allow_html=True)
# display Markdown
st.write("# Hello, World!") |