Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AAhad
/
demos
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f702539
demos
/
app.py
AAhad
added basic version
f702539
11 months ago
raw
Copy download link
history
blame
Safe
215 Bytes
import
streamlit
as
st
import
pandas
as
pd
st.write(
"Here's our first attempt at using data to create a table:"
)
st.write(pd.DataFrame({
'first column'
: [
1
,
2
,
3
,
4
],
'second column'
: [
10
,
20
,
30
,
40
]
}))