Jamoni commited on
Commit
28668d6
1 Parent(s): 7bfb33f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
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