Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
neelalex
/
leaderboard
like
0
Runtime error
App
Files
Files
Community
2
neelalex
commited on
Jul 8, 2021
Commit
232b884
•
1 Parent(s):
66854ce
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
import pandas as pd
3
+
4
+
df = pd.DataFrame({'col1': [1, 2, 3, 4, 5], 'col2': [5, 4, 3, 2, 1]})
5
+
st.table(df)