Update app.py
Browse files
app.py
CHANGED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""
|
2 |
+
# My first app
|
3 |
+
Here's our first attempt at using data to create a table:
|
4 |
+
"""
|
5 |
+
|
6 |
+
import streamlit as st
|
7 |
+
import pandas as pd
|
8 |
+
df = pd.DataFrame({
|
9 |
+
'first column': [1, 2, 3, 4],
|
10 |
+
'second column': [10, 20, 30, 40]
|
11 |
+
})
|
12 |
+
|
13 |
+
df
|