maduvantha commited on
Commit
2917b9c
·
1 Parent(s): 2f47d9d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
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!")