Spaces:
Sleeping
Sleeping
first commit
Browse files- testApp.py +10 -0
testApp.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
import numpy as np
|
| 4 |
+
|
| 5 |
+
st.title('My test App')
|
| 6 |
+
st.write("Here's our first attempt at using data to create a ***table***:")
|
| 7 |
+
st.write(pd.DataFrame({
|
| 8 |
+
'first col': [1, 2, 3, 4],
|
| 9 |
+
'second col': [10, 20, 30, 40]
|
| 10 |
+
}))
|