Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mgokg
/
PandasAI
like
0
Sleeping
App
Files
Files
xet
Community
Fetching metadata from the HF Docker repository...
mgokg
commited on
May 31, 2024
Commit
bc583d1
·
verified
·
1 Parent(s):
ae608e0
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
2
+
3
+
import streamlit as st
4
+
5
+
x = st.slider('Select a value')
6
+
st.write(x, 'squared is', x * x)