Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jamoni
/
test
like
0
Sleeping
App
Files
Files
Community
28668d6
test
/
app.py
Jamoni
Update app.py
28668d6
over 1 year ago
raw
Copy download link
history
blame
Safe
219 Bytes
"""
# My first app
Here's our first attempt at using data to create a table:
"""
import
streamlit
as
st
import
pandas
as
pd
df = pd.DataFrame({
'first column'
: [
1
,
2
,
3
,
4
],
'second column'
: [
10
,
20
,
30
,
40
]
})
df